You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/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
|
|
|