You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
463 B
23 lines
463 B
post_install() {
|
|
if ! getent group anope &>/dev/null; then
|
|
groupadd -r anope
|
|
fi
|
|
|
|
if ! getent passwd anope &>/dev/null; then
|
|
useradd -r -g anope -d /var/lib/anope -s /bin/false -c anope anope
|
|
fi
|
|
|
|
echo "Example config is in /etc/anope/example.conf."
|
|
echo "Copy it to /etc/anope/services.conf and modify it."
|
|
}
|
|
|
|
post_remove() {
|
|
if getent passwd anope &>/dev/null; then
|
|
userdel anope
|
|
fi
|
|
|
|
if getent group anope &>/dev/null; then
|
|
groupdel anope
|
|
fi
|
|
}
|
|
|
|
|