Final edits

- Make all cgi-bin and init files executable

- Move NTP contribution fix from package --> to be appart of sdxpinn-patch

- Edited ntp fi location

- Added additional service triggers to primary service quecmanager-services
This commit is contained in:
Cameron Thompson
2025-03-11 23:39:06 -04:00
parent 36874b12f0
commit 8e80ba5c91
55 changed files with 27 additions and 2 deletions

21
missing/ntp.init Executable file
View File

@@ -0,0 +1,21 @@
#! /bin/sh /etc/rc.common
START=90
USE_PROCD=1
start_service() {
if [ ! -f /etc/config/system ]; then
touch /etc/config/system
fi
sh /etc/init.d/ntp.config.h
procd_open_instance
procd_set_param command user ntp
procd_set_param command group ntp
procd_close_instance
echo "Starting ntp config service..."
}
stop_service(){
echo "Stoping ntp config service..."
}