mirror of
https://github.com/dadosfera/maestro.git
synced 2026-08-31 19:58:21 +00:00
14 lines
289 B
Bash
14 lines
289 B
Bash
#!/bin/bash
|
|
|
|
SWAPFILE=/var/swapfile
|
|
SWAP_MEGABYTES=1024
|
|
|
|
if [ -f $SWAPFILE ]; then
|
|
echo "Swapfile $SWAPFILE found, assuming already setup"
|
|
exit;
|
|
fi
|
|
|
|
/bin/dd if=/dev/zero of=$SWAPFILE bs=1M count=$SWAP_MEGABYTES
|
|
/bin/chmod 600 $SWAPFILE
|
|
/sbin/mkswap $SWAPFILE
|
|
/sbin/swapon $SWAPFILE |