mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-01-21 07:55:00 +00:00
19 lines
285 B
Bash
Executable File
19 lines
285 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
daemonuser=plinth
|
|
daemongroup=plinth
|
|
|
|
case "$1" in
|
|
configure)
|
|
addgroup --system --quiet plinth
|
|
adduser --system --quiet --ingroup plinth --no-create-home --home /var/lib/plinth plinth
|
|
chown -R plinth: /var/lib/plinth /var/log/plinth
|
|
;;
|
|
esac
|
|
|
|
#DEBHELPER#
|
|
|
|
exit 0
|