- 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
22 lines
453 B
Bash
Executable File
22 lines
453 B
Bash
Executable File
#! /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..."
|
|
}
|