X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=rewrite-config.PL;h=6167c5ee009fbcf1daaf2dfa7834d2cb0d4aaab0;hb=6c13e00bac15fa0be7f9ac915f290837b9d51dc7;hp=6f084a5da82e5cc438acabd1fc436880a2d9b3de;hpb=82daf0a5bc23042f24c1afb13e7d9746edc17914;p=koha.git diff --git a/rewrite-config.PL b/rewrite-config.PL index 6f084a5da8..6167c5ee00 100644 --- a/rewrite-config.PL +++ b/rewrite-config.PL @@ -64,7 +64,11 @@ $myhost = hostname(); $mydomain = $myhost; $mydomain =~ s/^.*?\.//; # This is set here to rescue systems with broken DNS -$myip = $ENV{'WEBSERVER_IP'} || inet_ntoa(scalar gethostbyname($myhost||'localhost')) || die "Cannot get our own IP address: DNS fault?"; +if ( !gethostbyname( $myhost || 'localhost' ) ) { + die 'Could not get the IP address of ' . ( $myhost || 'localhost' ) . ', DNS fault?'; +} + +$myip = $ENV{'WEBSERVER_IP'} || inet_ntoa( scalar gethostbyname( $myhost||'localhost' ) ); $prefix = $ENV{'INSTALL_BASE'} || "/usr"; # These are our configuration guesses @@ -117,6 +121,16 @@ $prefix = $ENV{'INSTALL_BASE'} || "/usr"; "__MERGE_SERVER_PORT__" => '11001', "__PAZPAR2_HOST__" => $myhost, "__PAZPAR2_PORT__" => '11002', + "__INSTALL_MODE__" => 'standard', + "__INSTALL_BASE__" => '/usr/share/koha', + "__INSTALL_ZEBRA__" => 'yes', + "__INSTALL_SRU__" => 'yes', + "__INSTALL_PAZPAR2__" => 'no', + "__PAZPAR2_TOGGLE_XML_PRE__" => '', + "__AUTH_INDEX_MODE__" => 'grs1', + "__RUN_DATABASE_TESTS__" => 'no', + "__PATH_TO_ZEBRA__" => "", ); # Override configuration from the environment @@ -126,8 +140,15 @@ foreach $key (keys %configuration) { } } +# munge commenting out the PazPar2 mergeserver +# entry in koha-conf.xml if necessary +if ($configuration{'__INSTALL_PAZPAR2__'} eq 'yes') { + $configuration{'__PAZPAR2_TOGGLE_XML_PRE__'} = ''; + $configuration{'__PAZPAR2_TOGGLE_XML_POST__'} = ''; +} + $fname = $ARGV[0]; -$file = read_file($fname); +$file = &read_file($fname); $file =~ s/__.*?__/exists $configuration{$&} ? $configuration{$&} : $&/seg; # At this point, file is in 'blib' and by default