summaryrefslogtreecommitdiff
path: root/pcr/polkit-consolekit/polkit.install
blob: 422db623ca803da6f348bad1e3c8e53d999ab079 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
}