mirror of
https://github.com/kenzok8/openwrt-packages
synced 2025-01-08 11:17:27 +08:00
11 lines
185 B
Bash
11 lines
185 B
Bash
#!/bin/sh
|
|
|
|
if [ "$PKG_UPGRADE" = 1 ]; then
|
|
/etc/init.d/quickstart enable
|
|
/etc/init.d/quickstart start
|
|
/etc/init.d/startdhns enable
|
|
/etc/init.d/startdhns boot
|
|
fi
|
|
|
|
exit 0
|