can rework it to check if init.d or system.d is used later on if nessary running on wheezy since jessie has been to unstable but its a minor tweak in config just some if variable thats needed
-- You received this bug notification because you are a member of Dcplusplus-team, which is subscribed to ADCH++. https://bugs.launchpad.net/bugs/1447730 Title: Debian Startup script Status in ADCH++: Opinion Bug description: Should work havent tested it yet might be worth while to add into distro #!/bin/bash # Init Script for ADCH++ CONF=/etc/adchpp/default.conf PID=$(ps -A -o pid,cmd|grep adchppd | grep -v grep |head -n 1 | awk '{print $1}') case "$1" in start) printf "Starting ADCH++" adchppd -d -c $CONF ;; stop) printf "Stopping ADCH++" kill -SIGTERM $PID ;; enable) printf "Enabling ADCH++ Service" update-rc.d adchpp defaults ;; disable) printf "Disabling ADCH++ Service" update-rc.d -f adchpp remove *) echo "Usage: /etc/init.d/adchpp {start|stop|enable|disable}" exit 1 ;; esac exit 0 To manage notifications about this bug go to: https://bugs.launchpad.net/adchpp/+bug/1447730/+subscriptions _______________________________________________ Mailing list: https://launchpad.net/~linuxdcpp-team Post to : linuxdcpp-team@lists.launchpad.net Unsubscribe : https://launchpad.net/~linuxdcpp-team More help : https://help.launchpad.net/ListHelp