9 lines
201 B
Bash
Executable file
9 lines
201 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
|
|
APP=mautrix-whatsapp
|
|
id $APP &> /dev/null || useradd $APP -r -s /bin/false -md /var/lib/$APP/
|
|
chown -R $APP:$APP /var/lib/$APP/
|
|
chown -R $APP:$APP /etc/mautrix-whatsapp/
|
|
|
|
#DEBHELPER#
|