summaryrefslogtreecommitdiff
path: root/russian/ircd-hybrid-ru/pkg-install
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2007-12-31 12:35:17 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2007-12-31 12:35:17 +0000
commit18a56320c9602155ab8efec1503104da172eb882 (patch)
treee6c9bc10db8d29a4e76a24cac3a7ecc376035aec /russian/ircd-hybrid-ru/pkg-install
parent- Fix manpage pointing to correct PREFIX for binary and conf (diff)
This commit was manufactured by cvs2svn to create tag 'RELEASE_6_3_0'.release/6.3.0
Notes
Notes: svn path=/head/; revision=204758 svn path=/tags/RELEASE_6_3_0/; revision=204759; tag=release/6.3.0
Diffstat (limited to 'russian/ircd-hybrid-ru/pkg-install')
-rw-r--r--russian/ircd-hybrid-ru/pkg-install68
1 files changed, 0 insertions, 68 deletions
diff --git a/russian/ircd-hybrid-ru/pkg-install b/russian/ircd-hybrid-ru/pkg-install
deleted file mode 100644
index 8aba8b1985ec..000000000000
--- a/russian/ircd-hybrid-ru/pkg-install
+++ /dev/null
@@ -1,68 +0,0 @@
-#!/bin/sh
-
-# This script is a modified copy of the pkg-install script
-# from the original ircd-hybrid port.
-
-if [ "x$2" != "xPRE-INSTALL" ]; then
- exit 0;
-fi
-
-
-if ! which -s pw ; then
- cat <<EOF
-Your system does not include the "pw" utility. You should upgrade
-to a newer version of FreeBSD. Without "pw" this script will not
-run.
-EOF
- exit 1
-fi
-
-uid=555
-user=ircdru
-gid=$uid
-group=$user
-gecos="Russian hybrid IRC server"
-shell="/bin/sh"
-home="/nonexistent"
-
-echo ""
-if pw groupshow $group 2> /dev/null ; then
- echo "You already have a group \"$group\", so I will use it."
-else
- if pw groupshow $gid 2> /dev/null ; then
- echo "You already have a gid \"$gid\". Please create a user \"$group\""
- echo "with a default group of \"$group\"."
- exit 1
- fi
- echo "You need a group \"$group\"."
- if which -s pw ; then
- pw groupadd $group -g $gid || exit
- echo "Done."
- else
- echo "Please create it, and try again."
- if ! pw usershow $user 2> /dev/null ; then
- echo "While you're at it, please create a user \"$user\""
- echo 'too, with a default group of "$group".'
- fi
- exit 1
- fi
-fi
-
-if pw usershow $user 2> /dev/null ; then
- echo "You already have a user \"$user\", so I will use it."
-else
- if pw usershow $uid 2> /dev/null ; then
- echo "You already have a uid \"$uid\". Please create a user \"$user\""
- echo "with a default group of \"$group\"."
- exit 1
- fi
- echo "You need a user \"$user\"."
- if which -s pw; then
- pw useradd $user -g $group -u $uid -h - -d $home \
- -s "$shell" -c "$gecos" || exit
- echo "Done."
- else
- echo "Please create it, and try again."
- exit 1
- fi
-fi