ljr/wcmtools/mogilefs/server/debian/mogilefsd.config

27 lines
338 B
Plaintext
Raw Normal View History

2019-02-05 21:49:12 +00:00
#!/bin/sh
PACKAGE=mogilefsd
set -e
. /usr/share/debconf/confmodule
RUNASUSER=""
while [ "$RUNASUSER" = "" ]
do
db_input medium $PACKAGE/runasuser || true
db_go
db_get $PACKAGE/runasuser
RUNASUSER="$RET"
if [ "$RUNASUSER" = "root" ]
then
db_reset $PACKAGE/runasuser
db_fset $PACKAGE/runasuser seen false
fi
done