mirror of
https://github.com/unraid/webgui.git
synced 2026-01-02 07:30:06 -06:00
11 lines
219 B
Bash
Executable File
11 lines
219 B
Bash
Executable File
#!/bin/bash
|
|
lock=/tmp/atlock.tmp
|
|
|
|
# run & log functions
|
|
. /etc/rc.d/rc.runlog
|
|
|
|
log "delay = ${1:-1}s"
|
|
rm -f $lock
|
|
echo "sleep ${1:-1};/usr/local/emhttp/webGui/scripts/reload_services $lock"|at -M now 2>/dev/null
|
|
exit 0
|