aboutsummaryrefslogtreecommitdiff
path: root/net/netsaint-plugins/scripts
diff options
context:
space:
mode:
authorYing-Chieh Liao <ijliao@FreeBSD.org>2001-05-17 06:02:17 +0000
committerYing-Chieh Liao <ijliao@FreeBSD.org>2001-05-17 06:02:17 +0000
commitbd994ab71e3cee1d6da4e8d4f823654afa197186 (patch)
treec7cf7e3f3052582af21a3b9c12c26b027cd01ea8 /net/netsaint-plugins/scripts
parentff22c102424cfcac2184b8b24bc21e1778eaf318 (diff)
downloadports-bd994ab71e3cee1d6da4e8d4f823654afa197186.tar.gz
ports-bd994ab71e3cee1d6da4e8d4f823654afa197186.zip
Notes
Diffstat (limited to 'net/netsaint-plugins/scripts')
-rw-r--r--net/netsaint-plugins/scripts/configure2
-rw-r--r--net/netsaint-plugins/scripts/createuser49
2 files changed, 1 insertions, 50 deletions
diff --git a/net/netsaint-plugins/scripts/configure b/net/netsaint-plugins/scripts/configure
index efb83034f1d2..1a17d8fb4392 100644
--- a/net/netsaint-plugins/scripts/configure
+++ b/net/netsaint-plugins/scripts/configure
@@ -81,7 +81,7 @@ while [ "$1" ]; do
;;
\"PostgreSQL\")
echo "LIB_DEPENDS+= pq.2:\${PORTSDIR}/databases/postgresql7"
- echo "CONFIGURE_ARGS+= --with-pgsql=\${LOCALBASE}/pgsql"
+ echo "CONFIGURE_ARGS+= --with-pgsql=\${LOCALBASE}"
SUB_PGSQL=""
;;
\"OpenLDAP\")
diff --git a/net/netsaint-plugins/scripts/createuser b/net/netsaint-plugins/scripts/createuser
deleted file mode 100644
index 0ebde3c5496d..000000000000
--- a/net/netsaint-plugins/scripts/createuser
+++ /dev/null
@@ -1,49 +0,0 @@
-#!/usr/bin/perl
-#
-
-eval '(exit $?0)' && eval 'exec /usr/bin/perl -S $0 ${1+"$@"}'
-& eval 'exec /usr/bin/perl -S $0 $argv:q'
-if 0;
-
-if( $> ) {
- print "\nYou must be root to run this step!\n\n";
- exit 1;
-}
-
-if( getpwnam( "netsaint" ) ) {
- ( $null, $null, $nsUID ) = getpwnam( "netsaint" );
-} else {
- $nsUID = 70;
- while( getpwuid( $nsUID ) ) {
- $nsUID++;
- }
-}
-
-if( getgrnam( "netsaint" ) ) {
- ( $null, $null, $nsGID ) = getgrnam( "netsaint" );
-} else {
- $nsGID = 70;
- while( getgrgid( $nsGID ) ) {
- $nsGID++;
- }
- &append_file( "/etc/group", "netsaint:*:$nsGID:" );
-}
-
-print "netsaint user using uid $nsUID and gid $nsGID\n";
-
-system( "/usr/bin/chpass -a \"netsaint:*:$nsUID:$nsGID\:\:0:0:Netsaint pseudo-user:/var/netsaint:/sbin/nologin\"" );
-
-sub append_file {
- local($file,@list) = @_;
- local($LOCK_EX) = 2;
- local($LOCK_NB) = 4;
- local($LOCK_UN) = 8;
-
- open(F, ">> $file") || die "$file: $!\n";
- while( ! flock( F, $LOCK_EX | $LOCK_NB ) ) {
- exit 1;
- }
- print F join( "\n", @list) . "\n";
- close F;
- flock( F, $LOCK_UN );
-}