#!/bin/sh # Copyright (C) 2009-2012 Centro de Computacao Cientifica e Software Livre # Departamento de Informatica - Universidade Federal do Parana - C3SL/UFPR # # This file is part of tincuca-client # # tincuca-client is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, # USA. # ### BEGIN INIT INFO # Provides: tincuca-client # Required-Start: $syslog $remote_fs $network # Should-Start: $ALL # Required-Stop: $syslog $remote_fs # Should-Stop: ypbind smtp # Default-Start: 3 5 # Default-Stop: 0 1 2 6 # Short-Description: tincuca client # Description: Starts the tincuca client ### END INIT INFO . /etc/rc.status rc_reset case "$1" in start) echo -n "Starting tincuca-client " /usr/local/bin/tincuca-client.sh start rc_status -v ;; stop) echo -n "Shutting down tincuca-client " /usr/local/bin/tincuca-client.sh stop rc_status -v ;; restart) echo -n "Restarting tincuca-client " /usr/local/bin/tincuca-client.sh restart rc_status -v ;; *) echo "Usage: $0 {start|stop|restart}" ;; esac rc_exit