diff options
Diffstat (limited to 'community-testing/inn/inn.install')
-rw-r--r-- | community-testing/inn/inn.install | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/community-testing/inn/inn.install b/community-testing/inn/inn.install deleted file mode 100644 index e4070870f..000000000 --- a/community-testing/inn/inn.install +++ /dev/null @@ -1,22 +0,0 @@ -post_install() { - grep -e "^news:" /etc/group 2>&- >&- || groupadd -g 13 -r news 2>&- >&- - grep -e "^news:" /etc/passwd 2>&- >&- || useradd -u 9 -r -m -g news news 2>&- >&- - - /usr/bin/makedbz -i -o 2>&- >&- - mkdir /var/log/news 2>&- >&- - - chown news:news -R var/spool/news 2>&- >&- - chown news:news var/log/news 2>&- >&- - chown news:news -R var/db/inn 2>&- >&- - - echo "" - echo "->" - echo "-> If this is a first-time installation, a minimal active file and" - echo "-> history database have been installed. Do not forget to update" - echo "-> your cron entries and configure INN. See INSTALL for more" - echo "-> information." - echo "->" - echo "-> The default user:group for inn is news:news" - echo "->" - echo "" -} |