summaryrefslogtreecommitdiffstats
path: root/tests/killrsyslog.sh
blob: aac249092a5b2c6c4c31fe4b85a368f95b893f8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#check if rsyslog instance exists and, if so, kill it
if [ -e "rsyslog.pid" ]
then
  echo rsyslog.pid exists, trying to shut down rsyslogd process `cat rsyslog.pid`.
  kill -9 `cat rsyslog.pid`
  sleep 1
fi
if [ -e "rsyslog2.pid" ]
then
  echo rsyslog2.pid exists, trying to shut down rsyslogd process `cat rsyslog2.pid`.
  kill -9 `cat rsyslog2.pid`
  sleep 1
fi