mirror of
https://pagure.io/fedora-kickstarts.git
synced 2024-11-09 23:50:07 +00:00
Fix enabling of swap from LiveOS/swap.img
The previous check required there to be a swap partition in addition to the existence of LiveOS/swap.img
This commit is contained in:
parent
ad792441ad
commit
15d51a1927
@ -122,9 +122,9 @@ if ! strstr "\`cat /proc/cmdline\`" noswap && [ -n "\$swaps" ] ; then
|
||||
for s in \$swaps ; do
|
||||
action "Enabling swap partition \$s" swapon \$s
|
||||
done
|
||||
if [ -f /mnt/live/LiveOS/swap.img ]; then
|
||||
action "Enabling swap file" swapon /mnt/live/LiveOS/swap.img
|
||||
fi
|
||||
if ! strstr "\`cat /proc/cmdline\`" noswap && [ -f /mnt/live/LiveOS/swap.img ] ; then
|
||||
action "Enabling swap file" swapon /mnt/live/LiveOS/swap.img
|
||||
fi
|
||||
|
||||
mountPersistentHome() {
|
||||
|
Loading…
Reference in New Issue
Block a user