Fixing build issues

This commit is contained in:
2026-04-27 12:10:35 -05:00
parent a22d6ef43c
commit 9fd44de7a0
10 changed files with 75 additions and 103 deletions

8
installscript Normal file
View File

@@ -0,0 +1,8 @@
pre_install() {
groupadd wolfpack &>/dev/null
useradd -g wolfpack -s /bin/false wolfpack &> /dev/null
}
pre_remove() {
getent passwd wolfpack &>/dev/null && userdel wolfpack &> /dev/null
}