blob: 25bb76d6e6aa1e0ec37964be6d57768941810dbe (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#add the dictd-group
post_install() {
getent group dictd &>/dev/null || groupadd dictd >/dev/null
true
}
pre_remove() {
getent group dictd &>/dev/null && groupdel dictd >/dev/null
true
}
|