Files
agnos-builder/userspace/root/etc/init.d/init_sys_mss
T
Adeeb Shihadeh fe3c65b79f unpack the debs (#562)
* unpack the debs

* update rest

* ignore
2026-04-30 12:54:27 -07:00

27 lines
378 B
Bash
Executable File

#! /bin/sh
set -e
case "$1" in
start)
echo -n "Starting atreset: "
start-stop-daemon -S -b -x /sbin/init_mss
echo "done"
;;
stop)
echo -n "Stopping atreset: "
start-stop-daemon -K -n init_mss
echo "done"
;;
restart)
$0 stop
$0 start
;;
*)
echo "Usage init_mss{ start | stop | restart }" >&2
exit 1
;;
esac
exit 0