create initial user in postinst script

This commit is contained in:
Jakob Ketterl 2021-02-06 18:59:01 +01:00
parent d99669b3aa
commit 1fed499b7f
1 changed files with 3 additions and 0 deletions

View File

@ -12,6 +12,9 @@ case "$1" in
# create OpenWebRX data directory and set the correct permissions
if [ ! -d "${OWRX_DATADIR}" ] && [ ! -L "${OWRX_DATADIR}" ]; then mkdir "${OWRX_DATADIR}"; fi
chown -R "${OWRX_USER}". ${OWRX_DATADIR}
# create initial openwebrx user
openwebrx-admin adduser --noninteractive --silent --user admin
;;
*)
echo "postinst called with unknown argument '$1'" 1>&2