website: document shuting down network interfaces for reboot

This commit is contained in:
Mitchell Hashimoto 2013-08-28 10:46:45 -07:00
parent 01e998a81c
commit c781045935
1 changed files with 9 additions and 0 deletions

View File

@ -128,6 +128,15 @@ reboot
sleep 60 sleep 60
``` ```
Some OS configurations don't properly kill all network connections on
reboot, causing the provisioner to hang despite a reboot occuring.
In this case, make sure you shut down the network interfaces
on reboot or in your shell script. For example, on Gentoo:
```
/etc/init.d/net.eth0 stop
```
## Troubleshooting ## Troubleshooting
*My shell script doesn't work correctly on Ubuntu* *My shell script doesn't work correctly on Ubuntu*