diff options
author | coadde [Márcio Alexandre Silva Delgado] <coadde@parabola.nu> | 2014-08-27 05:07:26 -0300 |
---|---|---|
committer | coadde [Márcio Alexandre Silva Delgado] <coadde@parabola.nu> | 2014-08-27 05:07:26 -0300 |
commit | 0ff008e3c9dcc5ef088f481dfff3dcd121575598 (patch) | |
tree | d6f6cf5d6939e1f030a48d3711d3606570afd08f /social/inspircd/inspircd.install | |
parent | ed9d1c12bbfcf9cb8b3d53e886edb679df372640 (diff) | |
download | abslibre-0ff008e3c9dcc5ef088f481dfff3dcd121575598.tar.gz abslibre-0ff008e3c9dcc5ef088f481dfff3dcd121575598.tar.bz2 abslibre-0ff008e3c9dcc5ef088f481dfff3dcd121575598.zip |
move some packages from [social] to [pcr] and remove unused [social]
Diffstat (limited to 'social/inspircd/inspircd.install')
-rw-r--r-- | social/inspircd/inspircd.install | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/social/inspircd/inspircd.install b/social/inspircd/inspircd.install deleted file mode 100644 index ec97113f5..000000000 --- a/social/inspircd/inspircd.install +++ /dev/null @@ -1,15 +0,0 @@ -post_install() { - getent group inspircd &>/dev/null || groupadd -r -g 141 inspircd >/dev/null - getent passwd inspircd &>/dev/null || useradd -r -u 141 -g inspircd -d /var/lib/inspircd -s /bin/false -c inspircd inspircd >/dev/null - - echo '==> You will need to create a config file for inspircd' - echo '==> cp /etc/inspircd/inspircd.conf.example /etc/inspircd/inspircd.conf' - echo '==> You will need to change the pidfile. To do this you can insert the following into your config.' - echo '==> <pid file="/var/run/inspircd/inspircd.pid">' - echo '==> Remember to use absolute paths in your config directory and not relative paths like you would do with a user-based inspircd install.' -} - -post_remove() { - getent passwd inspircd &>/dev/null && userdel inspircd >/dev/null - getent group inspircd &>/dev/null && groupdel inspircd >/dev/null -} |