Execute command before shutdown/reboot
To execute a script at shutdown or reboot:
- save your script in /etc/rc6.d
- Make it executable:
sudo chmod +x K99_script
Notes:
- The script in rc6.d must be with no .sh extension
- The name of your script must begin with K99 to run at the right time.
- The scripts in this directory are executed in alphabetical order.
source
If your vagrant VMs are using VirtualBox, you can modify /etc/default/virtualbox
and change the line that reads:
SHUTDOWN_USERS=""
to
SHUTDOWN_USERS="all"
That fixed it for me on Ubuntu 14.04.
Create a shell executable file with your script in /etc/init.d/ directory.
Since this has to be executed during shutdown or reboot need to create softlinks in /etc/rc0.d/ and /etc/rc6.d
Example:
sudo ln -s /etc/init.d/<your_file> /etc/rc0.d/k99stop_vm
sudo ln -s /etc/init.d/<your_file> /etc/rc6.d/k99stop_vm
sudo chmod a+x /etc/init.d/<your_file>