mirror of
https://github.com/kiddin9/op-packages.git
synced 2026-08-02 23:49:34 +08:00
10 lines
165 B
Bash
Executable File
10 lines
165 B
Bash
Executable File
#!/bin/sh
|
|
|
|
[ "$ACTION" = ifup ] || exit 0
|
|
|
|
enable=$(uci get dnspod.base_arg.enabled 2>/dev/null)
|
|
if [ $enable -eq 1 ]; then
|
|
sleep 30
|
|
/etc/init.d/dnspod restart
|
|
fi
|