top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

rc.local for shutdown?

0 votes
151 views

You can put random stuff to do at boot in /etc/rc.d/rc.local and it will get run last thing at boot time.

Just out of curiosity, is there an equivalent file you can get to run just before everything else at reboot or
shutdown time?

posted Jun 21, 2013 by anonymous

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+1 vote
 
Best answer

You can do this by making a systemd service unit which triggers on the shutdown, reboot, and halt targets. See http://unix.stackexchange.com/q/39226/2511 for some examples.

answer Jun 21, 2013 by anonymous
Similar Questions
+1 vote

I am running below script on sles 11 and getting different output.

#!/bin/bash
PID=$(/bin/ps aux | grep sro-rest | grep -v grep | awk '{print $2}')
echo "PID = $PID"
. /etc/rc.status
PID=$(/bin/ps aux | grep sro-rest | grep -v grep | awk '{print $2}')
echo "PID = $PID"

Output:

PID = 2453
PID =

After debugging, I get to know that once we run . /etc/rc.status then output of ps aux is getting short.
See below script for example,

#!/bin/bash
echo "Before ==================================> "
/bin/ps aux | grep java | grep -v grep
. /etc/rc.status
echo "After ==================================> "
/bin/ps aux | grep java | grep -v grep

Output :

Before ==================================>
root      2453  4.9  7.8 8496196 615020 ?      Sl   Jun05  60:31 /usr/java/jre1.8.0_77//bin/java -Djava.net.preferIPv4Stack=true -Djava.library.path=/opt/sro/lib -Dserver.port=50000 -Dspring.profiles.active=gal -jar /opt/sro/ui/lib/sro-rest-SNAPSHOT.jar
After ==================================>
root      2453  4.9  7.8 8496196 615020 ?      Sl   Jun05  60:31 /usr/java/jre1.8.0_77//bin/java -Djava.net.preferIPv4Stack=true -Djava.l

Can anyone explain why different behavior for the same command?

+1 vote

Through VM have installed RHEL6.5 on Windows 7. From VM I can ping other systems, but from other systems I can not ping local VM?

ifconfig shows only 2 interface,
1) etho that is 192.168.180.1
2) lo that is 127.0.0.0

...