Skip to content

Instantly share code, notes, and snippets.

@gvisoc
Created May 27, 2019 23:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gvisoc/bb88dc947cf79867b7f196c283b7780c to your computer and use it in GitHub Desktop.
Save gvisoc/bb88dc947cf79867b7f196c283b7780c to your computer and use it in GitHub Desktop.
# upstart config - wipes swap space on shutdown
# place in /etc/init
description "Wipes swap space on shutdown"
start on (runlevel [016] and stopped gdm)
script
swapoff -a
# change /swapfile for your file or device
sswap -lz /swapfile
end script
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment