mirror of
https://github.com/unraid/webgui.git
synced 2026-01-24 02:18:49 -06:00
8 lines
146 B
Bash
Executable File
8 lines
146 B
Bash
Executable File
#!/bin/bash
|
|
# stop docker_load daemon
|
|
DAEMON="docker_load"
|
|
if [[ "$(pgrep $DAEMON)" != "" ]]; then
|
|
logger "Stopping $DAEMON"
|
|
pkill $DAEMON
|
|
fi
|