Merge pull request #18 from fasrc/Swap

Swap script will now swap on all available swap spaces
pull/20/head
Javi Fontan 9 years ago
commit a99ce6b1ed

@ -1 +1,15 @@
swapon -L swap #!/bin/bash
activate_swaps() {
SWAP_DRIVES=$(blkid -t TYPE="swap" -o device)
for SWAP in $SWAP_DRIVES ; do
if [ -z "$(swapon -s | grep $SWAP)" ]; then
swapon $SWAP
fi
done
}
activate_swaps

Loading…
Cancel
Save