965a6d3639
Current Status: - CLI commands - API endpoints - controller process - agent process - Logging Test Plan: PASS: Build and Install ISO PASS: software-agent and software-controller services are active post unlock PASS: tox Story: 2010676 Task: 47817 Signed-off-by: Jessica Castelino <jessica.castelino@windriver.com> Change-Id: I394780ce40fee398c4eacb3aacb575a03ff93332
79 lines
1.5 KiB
Bash
Executable File
79 lines
1.5 KiB
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Copyright (c) 2023 Wind River Systems, Inc.
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
# chkconfig: 345 25 30
|
|
|
|
### BEGIN INIT INFO
|
|
# Provides: software-controller-daemon
|
|
# Required-Start: $syslog
|
|
# Required-Stop: $syslog
|
|
# Default-Start: 2 3 5
|
|
# Default-Stop: 0 1 6
|
|
# Short-Description: software-controller-daemon
|
|
# Description: Provides the Unified Software Patch Controller Daemon
|
|
### END INIT INFO
|
|
|
|
DESC="software-controller-daemon"
|
|
DAEMON="/usr/bin/software-controller-daemon"
|
|
PIDFILE="/var/run/software-controller-daemon.pid"
|
|
|
|
start()
|
|
{
|
|
if [ -e $PIDFILE ]; then
|
|
PIDDIR=/proc/$(cat $PIDFILE)
|
|
if [ -d ${PIDDIR} ]; then
|
|
echo "$DESC already running."
|
|
exit 1
|
|
else
|
|
echo "Removing stale PID file $PIDFILE"
|
|
rm -f $PIDFILE
|
|
fi
|
|
fi
|
|
|
|
echo -n "Starting $DESC..."
|
|
|
|
start-stop-daemon --start --quiet --background \
|
|
--pidfile ${PIDFILE} --make-pidfile --exec ${DAEMON}
|
|
|
|
if [ $? -eq 0 ]; then
|
|
echo "done."
|
|
else
|
|
echo "failed."
|
|
fi
|
|
}
|
|
|
|
stop()
|
|
{
|
|
echo -n "Stopping $DESC..."
|
|
start-stop-daemon --stop --quiet --pidfile $PIDFILE
|
|
if [ $? -eq 0 ]; then
|
|
echo "done."
|
|
else
|
|
echo "failed."
|
|
fi
|
|
rm -f $PIDFILE
|
|
}
|
|
|
|
case "$1" in
|
|
start)
|
|
start
|
|
;;
|
|
stop)
|
|
stop
|
|
;;
|
|
restart|force-reload)
|
|
stop
|
|
start
|
|
;;
|
|
*)
|
|
echo "Usage: $0 {start|stop|force-reload|restart}"
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
exit 0
|