Files
quectel-rgmii-toolkit/ipk-source/sdxpinn-quecmanager-beta/CONTROL/postinst
Cameron Thompson 3352a86548 QuecManager Beta install improvements
Made it so this package runs rc sync only once and waits 3 seconds before doing so in case init-watchdog is also responding.
2025-01-23 18:33:37 -05:00

14 lines
244 B
Bash
Executable File

#!/bin/ash
# Backup the original index.html and replace with login.html
mv /www/index.html /www/index.html.old
cp /www/login.html /www/index.html
service quecmanager-services enable
service quecmanager-services start
sleep 3
rc_sync
exit 0