Shutdown Script not executing...


 
Thread Tools Search this Thread
Operating Systems Linux Shutdown Script not executing...
# 1  
Old 02-19-2008
Shutdown Script not executing...

Hi all...
I have a problem...
I wrote a small daemon for my server to start\stop the application...

Code:
#!/bin/bash
#
# eaid        Startup script for the EAI Application
#
# chkconfig: 234 99 4
# description: Saves and restores system entropy pool for \
#              higher quality random number generation.

. /etc/rc.d/init.d/functions

if [ -f /etc/sysconfig/eaid ]; then
        . /etc/sysconfig/eaid
fi

# This are the conditions of the action

start() {
         su - tibprod -c "updown_ems.sh up"
         su - tibprod -c "updown_rvrd.sh up"
         su - tibprod -c "updown_rva.sh up"
         su - tibprod -c "updown_hawk.sh up"
         su - tibprod -c "updown_admin.sh up"
        }
stop()  {
         #su - tibprod -c "updown_admin.sh down"
         #su - tibprod -c "updown_hawk.sh down"
         #su - tibprod -c "updown_rva.sh down"
         #su - tibprod -c "updown_rvrd.sh  down"
         su - tibprod -c "updown_ems.sh down"
        }

# See how we were called.
case "$1" in
  start)
        start
        ;;
  stop)
        stop
        ;;
  *)
        echo $"Usage: $prog {start|stop}"
        exit 1
esac

exit $RETVAL

then i have added it by chkconfig --add eaid
and now i can see this:
Code:
chkconfig --list eaid
eaid            0:off   1:off   2:on    3:on    4:on    5:off   6:off

but...
then i'm looking at my /var/log/boot.log
i can see that the script is running then the computer starts but i cannot see that it's running the stop function when the computer is shutting down...
although i can see the "K" script on rc6.d...

what have i done wrong?

thanks for the help!
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Interactive Shutdown script

Hello folks. I will start out by saying as far as unix/linux scripting goes I know less about it than i do about giving birth (I'm a guy hehe). I am looking to make a shutdown script that will either shut down the system or reboot it using one of the shutdown run methods IE init 2 - 5 or a base... (1 Reply)
Discussion started by: azurie
1 Replies

2. Shell Programming and Scripting

db shutdown script

I am going to create shutdown database script. We have dabase shutdown script. But i need take dabase which online and make it down. I got user id which needs to dabase to down ID=`ps -ef | grep -i pmon | grep -v grep | awk '{print $1}'` ( got orace side DB=`ps -ef | grep -i pmon |... (1 Reply)
Discussion started by: allwin
1 Replies

3. Shell Programming and Scripting

Shutdown Script

Im writing a script to read a file called shutdown.cf and shut down any scripts that are listed there. I have came up with the following based on things I saw in similar programs but it doesn not work: Has anybody any idea what I may be doing wrong? Cheers Paul (4 Replies)
Discussion started by: runnerpaul
4 Replies

4. UNIX for Dummies Questions & Answers

Script to force Oracle database shutdown when shutdown immediate does not work

I have Oracle 9i R2 on AIX 5.2. My Database is running in shared server mode (MTS). Sometimes when I shutdown the database it shutsdown cleanly in 4-5 mints and sometimes it takes good 15-20 minutes and then I get some ora-600 errors and only way to shutdown is by opening another session and... (7 Replies)
Discussion started by: aixhp
7 Replies

5. Shell Programming and Scripting

Script sh for shutdown

Hi, i need shutdown a pc, is in the same network what command i can use in the script :o ? (1 Reply)
Discussion started by: Dymblos
1 Replies

6. HP-UX

Shutdown script

Hi, I am on Alpha Server with HP Tru64 system. I wish to setup shutdown to automatically and cleanly shutdown informix during the shutting down of the system. Ie. I was trying to use rc0.d to do this but failed. Has anyone tried doing this before? I already have the script and linked it to... (0 Replies)
Discussion started by: kingsto88
0 Replies

7. UNIX for Dummies Questions & Answers

A script for shutdown

I want to make a script to shutdown a unixware computer from other user then root. In Sco version i use "as root" but in the unixware i don't know. Please help me. 10x (12 Replies)
Discussion started by: kelu
12 Replies

8. UNIX for Advanced & Expert Users

Shutdown script

Hi Guys, I want to execute few of my bash script, so that whenever someone calls shutdown now -r command, I want my script to execute first before shutting down. Any help please????? I've just started playing with the unix system, so far its been brilliant.... (10 Replies)
Discussion started by: alpha_manic
10 Replies

9. Shell Programming and Scripting

remote shutdown script

Dear all I would like to shutdown multiple servers remotely with the issue of one single command. What is the command to shut down a server remotely (ie, I want to issue a command on server X to shutdown server Y and server Z). Thank you (2 Replies)
Discussion started by: soliberus
2 Replies

10. UNIX for Dummies Questions & Answers

logout/shutdown script

I am running JDictd (http://www.informatik.uni-leipzig.de/~duc/Java/JDictd/) from tcsh in Terminal on Mac OS X (:=Darwin=FreeBSD/Mach). I am trying to get it to exit cleanly silently upon Mac OS X system shutdown. My idea was that if there was a logout script in FreeBSD (basically a script... (1 Reply)
Discussion started by: ropers
1 Replies
Login or Register to Ask a Question