summaryrefslogtreecommitdiffstats
path: root/meta-security/recipes-security/samhain/files/samhain-client.init
diff options
context:
space:
mode:
authorBrad Bishop <bradleyb@fuzziesquirrel.com>2019-04-05 15:28:33 -0400
committerBrad Bishop <bradleyb@fuzziesquirrel.com>2019-04-05 19:31:28 +0000
commit193236933b0f4ab91b1625b64e2187e2db4e0e8f (patch)
treee12769d7c76d8b0517d6de3d3c72189753d253ed /meta-security/recipes-security/samhain/files/samhain-client.init
parentbd93df9478f2f56ffcbc8cb88f1709c735dcd85b (diff)
downloadtalos-openbmc-193236933b0f4ab91b1625b64e2187e2db4e0e8f.tar.gz
talos-openbmc-193236933b0f4ab91b1625b64e2187e2db4e0e8f.zip
reset upstream subtrees to HEAD
Reset the following subtrees on HEAD: poky: 8217b477a1(master) meta-xilinx: 64aa3d35ae(master) meta-openembedded: 0435c9e193(master) meta-raspberrypi: 490a4441ac(master) meta-security: cb6d1c85ee(master) Squashed patches: meta-phosphor: drop systemd 239 patches meta-phosphor: mrw-api: use correct install path Change-Id: I268e2646d9174ad305630c6bbd3fbc1a6105f43d Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
Diffstat (limited to 'meta-security/recipes-security/samhain/files/samhain-client.init')
-rw-r--r--meta-security/recipes-security/samhain/files/samhain-client.init122
1 files changed, 0 insertions, 122 deletions
diff --git a/meta-security/recipes-security/samhain/files/samhain-client.init b/meta-security/recipes-security/samhain/files/samhain-client.init
deleted file mode 100644
index d5fabeded..000000000
--- a/meta-security/recipes-security/samhain/files/samhain-client.init
+++ /dev/null
@@ -1,122 +0,0 @@
-#!/bin/bash
-# chkconfig: 2345 99 10
-# description: File Integrity Checking Daemon
-#
-# processname: samhain
-# config : /etc/samhainrc
-# logfile : /var/log/samhain_log
-# database: /var/lib/samhain/samhain_file
-#
-
-NAME=samhain
-DAEMON=/usr/sbin/samhain
-RETVAL=0
-PIDFILE=/var/run/samhain.pid
-
-. /etc/default/rcS
-
-. /etc/default/samhain-client
-
-if [ "x$SAMHAIN_CLIENT_START" != "xyes" ]; then
- echo "${0}: client disabled in /etc/default/samhain-client"
- exit 0
-fi
-
-if [ -x $DAEMON ]; then
- :
-else
- echo "${0}: executable ${DAEMON} not found"
- exit 1
-fi
-
-if [ ! -e /var/lib/samhain/samhain_file ]; then
- echo "${0}: /var/lib/samhain/samhain_file does not exist. You must"
- echo " run 'samhain -t init' before samhian-client can start."
- exit 1
-fi
-
-samhain_done()
-{
- if [ $RETVAL -eq 0 ]; then
- echo "."
- else
- echo " failed."
- fi
-}
-
-log_stat_msg () {
-case "$1" in
- 0)
- echo "Service $NAME: Running";
- ;;
- 1)
- echo "Service $NAME: Stopped and /var/run pid file exists";
- ;;
- 3)
- echo "Service $NAME: Stopped";
- ;;
- *)
- echo "Service $NAME: Status unknown";
- ;;
-esac
-}
-
-case "$1" in
- start)
- #
- # Remove a stale PID file, if found
- #
- if test -f ${PIDFILE}; then
- /bin/rm -f ${PIDFILE}
- fi
- #
- echo -n "Starting ${NAME}"
- start-stop-daemon --start --quiet --exec $DAEMON
- RETVAL=$?
- samhain_done
- ;;
-
- stop)
- echo -n "Stopping $NAME"
- start-stop-daemon --stop --quiet --exec $DAEMON
- RETVAL=$?
-
- #
- # Remove a stale PID file, if found
- #
- if test -f ${PIDFILE}; then
- /bin/rm -f ${PIDFILE}
- fi
- if test -S /var/run/${NAME}.sock; then
- /bin/rm -f /var/run/${NAME}.sock
- fi
- samhain_done
- ;;
-
- restart)
- $0 stop
- sleep 3
- $0 start
- RETVAL=$?
- ;;
-
- reload|force-reload)
- echo -n "Reloading $NAME configuration files"
- start-stop-daemon --stop --signal 1 --quiet --exec $DAEMON
- RETVAL=$?
- samhain_done
- ;;
-
- status)
- $DAEMON status
- RETVAL=$?
- log_stat_msg ${RETVAL}
- ;;
-
- *)
- echo "$0 usage: {start|stop|status|restart|reload}"
- exit 1
- ;;
-esac
-
-exit $RETVAL
OpenPOWER on IntegriCloud