22 lines
318 B
Bash
Executable File
22 lines
318 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. /lib/partman/lib/base.sh
|
|
. /lib/partman/lib/commit.sh
|
|
|
|
for dev in $DEVICES/*; do
|
|
[ -d "$dev" ] || continue
|
|
cd $dev
|
|
|
|
open_dialog IS_CHANGED
|
|
read_line is_changed
|
|
close_dialog
|
|
[ "$is_changed" = yes ] || continue
|
|
|
|
disable_swap "$dev"
|
|
|
|
open_dialog COMMIT
|
|
close_dialog
|
|
|
|
device_cleanup_partitions
|
|
done
|