mirror of
https://github.com/unraid/webgui.git
synced 2026-01-14 13:39:58 -06:00
8 lines
140 B
Bash
Executable File
8 lines
140 B
Bash
Executable File
#!/bin/bash
|
|
# stop diskload daemon
|
|
DAEMON="diskload"
|
|
if [[ "$(pgrep $DAEMON)" != "" ]]; then
|
|
logger "Stopping $DAEMON"
|
|
pkill $DAEMON
|
|
fi
|