Files
webgui/plugins/dynamix.docker.manager/event/stopping_svcs
T
Eric Schultz 30ca111094 initial commit
2015-10-24 10:17:28 -07:00

8 lines
133 B
Bash
Executable File

#!/bin/sh
# Shutdown Docker.io
if [ -x /etc/rc.d/rc.docker ]; then
echo "Stopping Docker..."
/etc/rc.d/rc.docker stop | logger
fi