For When You Can't Have The Real Thing
[ start | index | login ]
start > upclient

upclient

Created by dave. Last edited by dave, 20 years and 356 days ago. Viewed 2,919 times. #1
[edit] [rdf]
labels
attachments
Start script for upclient. Should work OK on Linux and Solaris.

#!/bin/sh
#
# Upclient

case $1 in 'start') /etc/init.d/upclient stop /usr/local/sbin/upclient ;; 'stop') if [ -f /var/run/upclient.pid ] ; then kill `cat /var/run/upclient.pid` fi ;; 'reload') /etc/init.d/upclient start ;; *) echo "usage: /etc/init.d/upclient [start|stop|reload]" ;; esac

no comments | post comment
This is a collection of techical information, much of it learned the hard way. Consider it a lab book or a /info directory. I doubt much of it will be of use to anyone else.

Useful:


snipsnap.org | Copyright 2000-2002 Matthias L. Jugel and Stephan J. Schmidt