mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
14 lines
461 B
Text
14 lines
461 B
Text
post_install() {
|
|
getent group polkitd >/dev/null || groupadd -g 102 polkitd
|
|
getent passwd polkitd >/dev/null || useradd -c 'Policy Kit Daemon' -u 102 -g polkitd -G proc -d '/' -s /bin/nologin polkitd
|
|
passwd -l polkitd &>/dev/null
|
|
chown 102 "$pkgdir/etc/polkit-1/rules.d"
|
|
chown 102 "$pkgdir/usr/share/polkit-1/rules.d"
|
|
}
|
|
|
|
post_upgrade() {
|
|
post_install
|
|
if (( $(vercmp $2 0.113-2) < 0 )); then
|
|
usermod -aG proc -s /usr/bin/nologin polkitd
|
|
fi
|
|
}
|