mirror of
https://github.com/unraid/webgui.git
synced 2026-04-23 18:48:49 -05:00
8 lines
133 B
Bash
Executable File
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
|