15 lines
193 B
Bash
Executable file
15 lines
193 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Deletes the swapfile created by mkswp()
|
|
|
|
set -e
|
|
|
|
if [ -d /swap ]; then
|
|
SWAPFILE=/swap/swapfile
|
|
else
|
|
SWAPFILE=/swapfile
|
|
fi
|
|
|
|
sudo swapoff -v "$SWAPFILE"
|
|
sudo rm "$SWAPFILE"
|
|
|