diff options
Diffstat (limited to 'pcr/polkit-consolekit/polkit.install')
-rw-r--r-- | pcr/polkit-consolekit/polkit.install | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/pcr/polkit-consolekit/polkit.install b/pcr/polkit-consolekit/polkit.install new file mode 100644 index 000000000..422db623c --- /dev/null +++ b/pcr/polkit-consolekit/polkit.install @@ -0,0 +1,15 @@ +post_install() { + getent group polkitd || groupadd -g 102 polkitd + getent passwd polkitd || useradd -c 'Policy Kit Daemon' -u 102 -g polkitd -G proc -d '/' -s /usr/bin/nologin polkitd + passwd -l polkitd &>/dev/null +} + +post_upgrade() { + post_install + + if (( $(vercmp $2 0.113-6) < 0 )); then + usermod -aG proc -s /usr/bin/nologin polkitd + chown root:102 /{etc,usr/share}/polkit-1/rules.d + chmod 750 /{etc,usr/share}/polkit-1/rules.d + fi +} |