From 7e67cfd42b5e333fe2bb3086e2ad490129437176 Mon Sep 17 00:00:00 2001 From: André Fabian Silva Delgado Date: Wed, 13 Feb 2013 22:39:07 -0200 Subject: gnuhealth-1.8.0-1: updating version and dependencies --- social/trytond/trytond.rc | 52 ----------------------------------------------- 1 file changed, 52 deletions(-) delete mode 100644 social/trytond/trytond.rc (limited to 'social/trytond/trytond.rc') diff --git a/social/trytond/trytond.rc b/social/trytond/trytond.rc deleted file mode 100644 index a93172a58..000000000 --- a/social/trytond/trytond.rc +++ /dev/null @@ -1,52 +0,0 @@ -#!/bin/bash - -. /etc/rc.conf -. /etc/rc.d/functions - -PID=`pidof -o %PPID /usr/bin/python /usr/bin/trytond` -case "$1" in - start) - stat_busy "Starting Tryton server" - # handling log file - if [ ! -e /var/log/trytond/trytond.log ]; then - mkdir -p /var/log/trytond - touch /var/log/trytond/trytond.log - chown -R trytond:trytond /var/log/trytond - fi - # starting the daemon - if [ -z "$PID" ]; then - su - trytond -s /bin/bash -c "/usr/bin/python2 /usr/bin/trytond \ - --logfile=/var/log/trytond/trytond.log &> /dev/null &" - if [ $? -gt 0 ]; then - stat_fail - else - add_daemon trytond - stat_done - fi - else - stat_fail - fi - ;; - stop) - stat_busy "Stopping Tryton server" - if [ ! -z "$PID" ]; then - if [ $? -gt 0 ]; then - stat_fail - else - kill $PID &> /dev/null & - rm_daemon trytond - stat_done - fi - else - stat_fail - fi - ;; - restart) - $0 stop - sleep 3 - $0 start - ;; - *) - echo "usage: $0 {start|stop|restart}" -esac -exit 0 -- cgit v1.2.3-54-g00ecf