diff options
author | cvs2svn <cvs2svn@FreeBSD.org> | 2003-01-16 05:08:57 +0000 |
---|---|---|
committer | cvs2svn <cvs2svn@FreeBSD.org> | 2003-01-16 05:08:57 +0000 |
commit | df3e7e93b8317ece24fbe7d0c9e4aa1ebb0feca0 (patch) | |
tree | 1d9ecedb74d255866c8e1e5df9db0f2739a8ba66 /www/rt34/files/patch-tools-initdb | |
parent | c31f9d6cf28e3aa831ff2390ee3ab6ea031dbc76 (diff) |
Notes
Diffstat (limited to 'www/rt34/files/patch-tools-initdb')
-rw-r--r-- | www/rt34/files/patch-tools-initdb | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/www/rt34/files/patch-tools-initdb b/www/rt34/files/patch-tools-initdb deleted file mode 100644 index 1ee6462ed640..000000000000 --- a/www/rt34/files/patch-tools-initdb +++ /dev/null @@ -1,29 +0,0 @@ ---- tools/initdb Wed Nov 7 07:06:06 2001 -+++ tools/initdb Thu Aug 15 17:17:19 2002 -@@ -17,7 +17,7 @@ - $SCHEMA_DIR ="etc"; - $SCHEMA_FILE = "$SCHEMA_DIR/schema.pm"; #hmm - --($DB_TYPE, $DB_HOME, $DB_HOST, $DB_PORT, $DB_DBA, $DB_DATABASE, $ACTION) = @ARGV; -+($DB_TYPE, $DB_HOME, $DB_HOST, $DB_PORT, $DB_DBA, $DB_DATABASE, $DB_DBA_PASSWORD, $ACTION) = @ARGV; - - - if ($DEBUG) { -@@ -71,6 +71,8 @@ - # {{{ sub prompt_for_dba_password - - sub prompt_for_dba_password { -+ return if defined $DB_DBA_PASSWORD; -+ - print "Enter the $DB_TYPE password for $DB_DBA: "; - - system "stty -echo"; -@@ -107,7 +109,7 @@ - If you have an existing RT 2.x installation, this will destroy all your data. - i - END -- exit unless _yesno(); -+ # exit unless _yesno(); - - } - |