mirror of
https://github.com/archlinux/aur.git
synced 2026-03-05 17:32:31 +01:00
21 lines
607 B
Text
21 lines
607 B
Text
post_install() {
|
|
groupadd -r sabayon &>/dev/null
|
|
useradd -r -g sabayon -d /var/lib/sabayon -s /bin/false sabayon &>/dev/null
|
|
xdg-icon-resource forceupdate
|
|
}
|
|
|
|
post_upgrade() {
|
|
getent group sabayon >/dev/null 2>&1 || groupadd -r sabayon &>/dev/null
|
|
getent passwd sabayon >/dev/null 2>&1 || useradd -r -g sabayon -d /var/lib/sabayon -s /bin/false sabayon &>/dev/null
|
|
xdg-icon-resource forceupdate
|
|
}
|
|
|
|
post_remove() {
|
|
if getent passwd sabayon >/dev/null 2>&1; then
|
|
userdel sabayon
|
|
fi
|
|
if getent group sabayon >/dev/null 2>&1; then
|
|
groupdel sabayon
|
|
fi
|
|
xdg-icon-resource forceupdate
|
|
}
|