blob: 3550a5e59444527fd202d9e41f2189cc77358def (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
post_install () {
groupadd cdemu
echo " > Add yourself to the 'cdemu' group for non-root access"
echo " > See /etc/conf.d/cdemud for further configuration"
}
post_remove() {
groupdel cdemu
}
# vim:set ts=2 sw=2 et:
|