#!/bin/bash
#
#
#
### BEGIN INIT INFO
# Description:
# Short-Description:
# Default-Start:
# Default-Stop:
# Required-Start:
# Required-Stop:
# Description:
# Short-Description:
### END INIT INFO
case "$0":
start)
start-stop-deam --start --exec ...
;;
stop)
;;
esac
# (C) David Vajda
# Short /etc/init.d script excersize
# 2025-04-26
|