mirror of
https://github.com/archlinux/aur.git
synced 2026-02-14 20:51:54 +01:00
23 lines
607 B
Bash
23 lines
607 B
Bash
#/bin/sh
|
|
|
|
# arg 1: the new package version
|
|
post_install() {
|
|
getent group ghostpp >/dev/null || groupadd ghostpp
|
|
getent passwd ghostpp >/dev/null || useradd --system --home /var/lib/ghostpp --gid ghostpp ghostpp
|
|
chown --recursive ghostpp:ghostpp /var/lib/ghostpp
|
|
echo "==> You need to edit the config in /etc/ghostpp/ghost.cfg before using the bot"
|
|
}
|
|
|
|
# arg 1: the new package version
|
|
# arg 2: the old package version
|
|
post_upgrade() {
|
|
:
|
|
}
|
|
|
|
# arg 1: the old package version
|
|
post_remove() {
|
|
userdel -f ghostpp >/dev/null 2>&1
|
|
groupdel ghostpp >/dev/null 2>&1
|
|
}
|
|
|
|
# vim:set ts=2 sw=2 ft=sh et:
|