X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=scripts%2Fsystem%2Fadd_swap_mount.sh;h=2577f44ae4f653164dbd109d4e3449d6b75c417f;hb=b1436548fd05e1f83162f50c57285e7e0b53992c;hp=64547bd5248db246b4d6d46b6627fae46c3edb01;hpb=4b358c3294ac6184c2d0fa594288ef56aa3e72e4;p=feisty_meow.git diff --git a/scripts/system/add_swap_mount.sh b/scripts/system/add_swap_mount.sh index 64547bd5..2577f44a 100644 --- a/scripts/system/add_swap_mount.sh +++ b/scripts/system/add_swap_mount.sh @@ -1,14 +1,24 @@ #!/bin/bash -#hmmm: should check at each step if it worked. +# auto-find the scripts, since we might want to run this as sudo. +export WORKDIR="$( \cd "$(\dirname "$0")" && /bin/pwd )" # obtain the script's working directory. +source "$WORKDIR/../core/launch_feisty_meow.sh" + #hmmm: should be able to add a new swap drive if desired. +#hmmm: why all the hard-coded paths below? + +/bin/dd if=/dev/zero of=/var/swap.1 bs=1M count=2048 +test_or_die "creating swap file" -/bin/dd if=/dev/zero of=/var/swap.1 bs=1M count=1024 +/bin/chmod 600 /var/swap.1 +test_or_die "setting swap file permissions" /sbin/mkswap /var/swap.1 +test_or_die "formatting swap file as swap partition" /sbin/swapon /var/swap.1 +test_or_die "enabling new swap partition" free