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.
16 lines
238 B
16 lines
238 B
9 years ago
|
#!/bin/bash
|
||
|
|
||
|
activate_swaps() {
|
||
|
|
||
9 years ago
|
SWAP_DRIVES=$(blkid -t TYPE="swap" -o device)
|
||
9 years ago
|
for SWAP in $SWAP_DRIVES ; do
|
||
9 years ago
|
if [ -z "$(swapon -s | grep $SWAP)" ]; then
|
||
9 years ago
|
swapon $SWAP
|
||
|
fi
|
||
|
done
|
||
|
|
||
|
}
|
||
|
|
||
|
activate_swaps
|
||
|
|