diff options
author | Britney Fransen <brfransen@gmail.com> | 2018-04-27 15:29:29 (GMT) |
---|---|---|
committer | Britney Fransen <brfransen@gmail.com> | 2018-04-27 15:29:29 (GMT) |
commit | 51f4bfc579814abea2f90404a434017dca5a3e22 (patch) | |
tree | 13fd761d30bda3f07f0649076047413fd997f82f /abs/extra/polkit/polkit.install | |
parent | ef0a21c1b5b942595b706064f4122ed16fc4a0a9 (diff) | |
download | linhes_pkgbuild-51f4bfc579814abea2f90404a434017dca5a3e22.zip linhes_pkgbuild-51f4bfc579814abea2f90404a434017dca5a3e22.tar.gz linhes_pkgbuild-51f4bfc579814abea2f90404a434017dca5a3e22.tar.bz2 |
polkit: update to 0.114
Diffstat (limited to 'abs/extra/polkit/polkit.install')
-rw-r--r-- | abs/extra/polkit/polkit.install | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/abs/extra/polkit/polkit.install b/abs/extra/polkit/polkit.install deleted file mode 100644 index fbb9891..0000000 --- a/abs/extra/polkit/polkit.install +++ /dev/null @@ -1,18 +0,0 @@ -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 -} |