| #!/bin/sh |
| |
| DAEMON="pb-console" |
| |
| PB_CONSOLE_PORT=${2:-"console"} |
| PB_CONSOLE_ARGS="--getty=/sbin/agetty --detach -- -a petituser -n -i $PB_CONSOLE_PORT linux" |
| |
| # shellcheck source=/dev/null |
| [ -r "/etc/default/petitboot" ] && . "/etc/default/petitboot" |
| |
| start() { |
| printf 'Starting %s on %s: ' "$DAEMON" "$PB_CONSOLE_PORT" |
| # shellcheck disable=SC2174 # only apply -m to deepest dir |
| mkdir -p -m 0775 /var/log/petitboot |
| chown petituser:petitgroup /var/log/petitboot |
| |
| # shellcheck disable=SC2086 # we need the word splitting |
| start-stop-daemon -S -q -x "/usr/libexec/petitboot/$DAEMON" \ |
| -- $PB_CONSOLE_ARGS |
| status=$? |
| if [ "$status" -eq 0 ]; then |
| echo "OK" |
| else |
| echo "FAIL" |
| fi |
| return "$status" |
| } |
| |
| case "$1" in |
| start) |
| "$1";; |
| stop|restart|reload) |
| ;; |
| *) |
| echo "Usage: $0 {start|stop|restart|reload} [port]" |
| exit 1 |
| ;; |
| esac |