14 lines
240 B
Bash
Executable file
14 lines
240 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
case "$1" in
|
|
configure)
|
|
adduser --system --disabled-password --disabled-login --home /var/empty \
|
|
--no-create-home --quiet --force-badname --group miniflux
|
|
;;
|
|
esac
|
|
|
|
#DEBHELPER#
|
|
|
|
exit 0
|