2 getent group inspircd &>/dev/null || groupadd -r -g 141 inspircd >/dev/null
3 getent passwd inspircd &>/dev/null || useradd -r -u 141 -g inspircd -d /var/lib/inspircd -s /bin/false -c inspircd inspircd >/dev/null
5 echo '==> You will need to create a config file for inspircd'
6 echo '==> cp /etc/inspircd/inspircd.conf.example /etc/inspircd/inspircd.conf'
7 echo '==> You will need to change the pidfile. To do this you can insert the following into your config.'
8 echo '==> <pid file="/var/run/inspircd/inspircd.pid">'
9 echo '==> Remember to use absolute paths in your config directory and not relative paths like you would do with a user-based inspircd install.'
13 getent passwd inspircd &>/dev/null && userdel inspircd >/dev/null
14 getent group inspircd &>/dev/null && groupdel inspircd >/dev/null