r.ip #7

Open
DarkFeather wants to merge 10 commits from r.ip into main
3 changed files with 10 additions and 2 deletions
Showing only changes of commit cc12803ecf - Show all commits
+1 -1
View File
@@ -1,5 +1,5 @@
raven.mono
TheRaven-*.pkg.tar.zst
**.pkg.tar.zst
pkg/
src/
.config
+1 -1
View File
@@ -20,7 +20,7 @@ conflicts=()
replaces=("${pkgname,,}", "aninix-${pkgname,,}")
backup=()
options=()
install=
install=installscript
changelog=
source=()
noextract=()
+8
View File
@@ -0,0 +1,8 @@
pre_install() {
groupadd raven &>/dev/null
useradd -g raven -s /bin/false raven &> /dev/null
}
pre_remove() {
getent passwd raven &>/dev/null && userdel raven &> /dev/null
}