From 896520ecb98b8c40777b8dc510a051d2b3908328 Mon Sep 17 00:00:00 2001 From: freaj Date: Sun, 29 Mar 2015 19:44:12 +0200 Subject: polkit-consolekit: add new package to [pcr] --- pcr/polkit-consolekit/polkit.install | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 pcr/polkit-consolekit/polkit.install (limited to 'pcr/polkit-consolekit/polkit.install') diff --git a/pcr/polkit-consolekit/polkit.install b/pcr/polkit-consolekit/polkit.install new file mode 100644 index 000000000..fbb98919e --- /dev/null +++ b/pcr/polkit-consolekit/polkit.install @@ -0,0 +1,18 @@ +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 -d '/' -s /bin/false polkitd + passwd -l polkitd &>/dev/null +} + +post_upgrade() { + post_install +} + +post_remove() { + if getent passwd polkitd >/dev/null; then + userdel polkitd + fi + if getent group polkitd >/dev/null; then + groupdel polkitd + fi +} -- cgit v1.2.3-2-g168b