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

2
.gitignore vendored
View File

@ -1,5 +1,5 @@
raven.mono
TheRaven-*.pkg.tar.zst
**.pkg.tar.zst
pkg/
src/
.config

View File

@ -20,7 +20,7 @@ conflicts=()
replaces=("${pkgname,,}", "aninix-${pkgname,,}")
backup=()
options=()
install=
install=installscript
changelog=
source=()
noextract=()

8
installscript Normal file
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
}