mirror of
https://github.com/vdsm/virtual-dsm.git
synced 2025-06-08 01:18:32 +08:00
Service
This commit is contained in:
parent
b58e876c8e
commit
a2eafc93e6
@ -5,29 +5,33 @@ SCRIPT="/usr/local/bin/agent.sh"
|
|||||||
|
|
||||||
status() {
|
status() {
|
||||||
if [ -f "$PIDFILE" ]; then
|
if [ -f "$PIDFILE" ]; then
|
||||||
echo 'Service running' >&2
|
echo 'Service running'
|
||||||
return 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
start() {
|
start() {
|
||||||
if [ -f "$PIDFILE" ] && kill -0 "$(cat "$PIDFILE")"; then
|
if [ -f "$PIDFILE" ] && kill -0 "$(cat "$PIDFILE")"; then
|
||||||
echo 'Service already running' >&2
|
echo 'Service already running'
|
||||||
return 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
printf 'Starting agent service...' >&2
|
echo 'Starting agent service...'
|
||||||
chmod 666 /dev/ttyS0
|
chmod 666 /dev/ttyS0
|
||||||
"$SCRIPT" &> /dev/ttyS0 & echo $! > "$PIDFILE"
|
"$SCRIPT" &> /dev/ttyS0 & echo $! > "$PIDFILE"
|
||||||
|
exit 0
|
||||||
}
|
}
|
||||||
|
|
||||||
stop() {
|
stop() {
|
||||||
if [ ! -f "$PIDFILE" ] || ! kill -0 "$(cat "$PIDFILE")"; then
|
if [ ! -f "$PIDFILE" ] || ! kill -0 "$(cat "$PIDFILE")"; then
|
||||||
echo 'Service not running' >&2
|
echo 'Service not running'
|
||||||
return 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
echo 'Stopping agent service' >&2
|
echo 'Stopping agent service...'
|
||||||
|
chmod 666 /dev/ttyS0
|
||||||
|
echo 'Stopping agent service...' > /dev/ttyS0
|
||||||
kill -15 "$(cat "$PIDFILE")" && rm -f "$PIDFILE"
|
kill -15 "$(cat "$PIDFILE")" && rm -f "$PIDFILE"
|
||||||
echo 'Service stopped' >&2
|
echo 'Service stopped'
|
||||||
|
exit 0
|
||||||
}
|
}
|
||||||
|
|
||||||
case "$1" in
|
case "$1" in
|
||||||
|
Loading…
x
Reference in New Issue
Block a user