Xymon Mailing List Archive search

client startup script for Solaris10 or Linux

list Camelia Anghel
Tue, 15 Sep 2009 08:24:02 -0400
Message-Id: <user-05b528107119@xymon.invalid>

Josh, so where so I run this script from /etc/init.d???
Thanks,
Camelia 
 
-----Original Message-----
From: Josh Luthman [mailto:user-4c45a83f15cb@xymon.invalid] 
Sent: Monday, September 14, 2009 4:27 PM
To: user-ae9b8668bcde@xymon.invalid
Subject: Re: [hobbit] client startup script for Solaris10 or Linux
 
Works on all my Linux (Fedora, Centos, Debian) boxes.

http://pastebin.com/m50937662

#!/bin/sh
PATH=$PATH:/bin:/usr/bin                # FOR su
STARTDIR=/home/hobbituser/client
USERNAME=myhobbituser
STARTBIN=runclient.sh

case "$1" in
start)
        su - $USERNAME -c "cd $STARTDIR;./$STARTBIN start"
        #&SLEEP
        ;;
restart)
        su - $USERNAME -c "cd $STARTDIR;./$STARTBIN restart"
        #&SLEEP
        ;;
stop)
        su - $USERNAME -c "cd $STARTDIR;./$STARTBIN stop"
        ;;
*)
        echo "Usage: $0 {start|stop|restart}"
        exit 1
        ;;
esac

exit 0

Josh Luthman
Office: XXX-XXX-XXXX
Direct: XXX-XXX-XXXX
XXXX Wayne St
Suite XXXX
Troy, OH XXXXX

"When you have eliminated the impossible, that which remains, however
improbable, must be the truth."
--- Sir Arthur Conan Doyle


On Mon, Sep 14, 2009 at 1:26 PM, Camelia Anghel <user-56034f999072@xymon.invalid> wrote:

Hello everyone,
Does anyone has a startup script for Solaris 10 or Linux?
I noticed that my clients become purple after a server restart...
Thanks,
Camelia