25 lines
538 B
Bash
Executable file
25 lines
538 B
Bash
Executable file
#!/bin/sh
|
|
|
|
freescout_dir='/var/lib/freescout'
|
|
|
|
if ! getent group freescout 1>/dev/null; then
|
|
echo '* Creating group freescout' 1>&2
|
|
|
|
addgroup -S freescout
|
|
fi
|
|
|
|
if ! id freescout 2>/dev/null 1>&2; then
|
|
echo '* Creating user freescout' 1>&2
|
|
|
|
adduser -DHS -G freescout -h "$freescout_dir" -s /bin/sh \
|
|
-g "added by apk for freescout" freescout
|
|
passwd -u freescout 1>/dev/null # unlock
|
|
fi
|
|
|
|
if ! id -Gn freescout | grep -Fq www-data; then
|
|
echo '* Adding user freescout to group www-data' 1>&2
|
|
|
|
addgroup freescout www-data
|
|
fi
|
|
|
|
exit 0
|