summarylogtreecommitdiffstats
path: root/prelockd.install
blob: 1c45a158da92aea190ca72b1ecb2fa52eb268907 (plain)
1
2
3
4
5
6
7
8
9
10
11
post_install() {
    id "prelockd" &>/dev/null || useradd -r -M -s /bin/false prelockd
}

post_upgrade() {
    id "prelockd" &>/dev/null || useradd -r -M -s /bin/false prelockd
}

post_remove() {
    userdel prelockd
}