1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
Subject: remove questions at setup
Description: Remove "simple install" question from setup
Author: Olivier Sallou <olivier.sallou@irisa.fr>
Last-Updated: 02/11/2011
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -243,9 +243,10 @@
my ( $DBDRIVER, $DBNAME, $DBUSER, $DBPASS, $DBHOST, $DBPORT,$SCHEMA,
$SQLFILES, $EXTERNAL_DDL, $LOCAL_TMP, $DBORGANISM, $APOLLO, $DEFAULT);
-$O{'SIMPLE'} = prompt(
- "Use the simple install (uses default database schema, which contains\nall of the modules and extensions to the schema and all of the non-trigger functions.\nThis is probably what you want)", 'Y'
- );
+#$O{'SIMPLE'} = prompt(
+# "Use the simple install (uses default database schema, which contains\nall of the modules and extensions to the schema and all of the non-trigger functions.\nThis is probably what you want)", 'Y'
+# );
+$O{'SIMPLE'} = "Y";
if ( ! @argv && %conf ) {
my $answer = prompt(
|