mirror of
https://github.com/unraid/webgui.git
synced 2026-01-02 07:30:06 -06:00
8 lines
197 B
Bash
Executable File
8 lines
197 B
Bash
Executable File
#!/bin/bash
|
|
lock=/tmp/atlock.tmp
|
|
|
|
logger -t network "update services: ${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
|