Fixing Makefile conflict

This commit is contained in:
2023-02-22 21:41:40 -06:00
parent 5ef9cf1471
commit 4f28d028e5
3 changed files with 2 additions and 1 deletions

9
installscript Normal file
View File

@@ -0,0 +1,9 @@
pre_install() {
groupadd maat &>/dev/null
useradd -g maat -d /srv/maat -s /bin/false maat &> /dev/null
chown -R maat:maat /srv/maat &> /dev/null
}
pre_remove() {
getent passwd maat &>/dev/null && userdel maat &> /dev/null
}