FreedomBox/debian/postinst
Federico Ceratto 17ee712502
debian: Switch to native package
Reviewed-by: Sunil Mohan Adapa <sunil@medhas.org>
2017-11-03 18:30:35 +05:30

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