summarylogtreecommitdiffstats
path: root/.INSTALL
blob: 2ec4029c97e6828d9424edca458b6ce762633796 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
pre_install() {
        if ! grep -q "^torguard:" /etc/group ; then groupadd --system torguard; fi
}

pre_upgrade() {
        if ! grep -q "^torguard:" /etc/group ; then groupadd --system torguard; fi
}

post_remove() {
        if grep -q "^torguard:" /etc/group ; then groupdel torguard; fi
}