X-Git-Url: http://git.rot13.org/?p=BackupPC.git;a=blobdiff_plain;f=configure.pl;h=28c4b8661f007dc309e8d3870b6a1144c8e001be;hp=e604ac1014ae272c891569db678d3e541f3c4aee;hb=74baa820fab5e1a03551526f0e9e671d9f74de03;hpb=fadae1eaa5482a441bc8e8aa829a063ee6a5f0c0 diff --git a/configure.pl b/configure.pl index e604ac1..28c4b86 100755 --- a/configure.pl +++ b/configure.pl @@ -1,4 +1,4 @@ -#!/bin/perl +#!/usr/bin/env perl #============================================================= -*-perl-*- # # configure.pl: Configuration and installation program for BackupPC @@ -19,7 +19,7 @@ # Craig Barratt # # COPYRIGHT -# Copyright (C) 2001-2006 Craig Barratt +# Copyright (C) 2001-2010 Craig Barratt # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -37,7 +37,7 @@ # #======================================================================== # -# Version 3.0.0alpha, released 8 Jul 2006. +# Version 3.1.0beta0, released 3 Sep 2007. # # See http://backuppc.sourceforge.net. # @@ -97,6 +97,7 @@ if ( !GetOptions( "cgi-dir=s", "compress-level=i", "config-path=s", + "config-override=s%", "config-dir=s", "data-dir=s", "dest-dir=s", @@ -230,10 +231,15 @@ EOF # Create defaults for FHS setup # if ( $opts{fhs} ) { - $Conf{TopDir} ||= "/data/BackupPC"; - $Conf{ConfDir} ||= $opts{"config-dir"} || "/etc/BackupPC"; - $Conf{InstallDir} ||= "/usr/local/BackupPC"; - $Conf{LogDir} ||= $opts{"log-dir"} || "/var/log/BackupPC"; + $Conf{TopDir} ||= $opts{"data-dir"} || "/data/BackupPC"; + $Conf{ConfDir} ||= $opts{"config-dir"} || "/etc/BackupPC"; + $Conf{InstallDir} ||= $opts{"install-dir"} || "/usr/local/BackupPC"; + $Conf{LogDir} ||= $opts{"log-dir"} || "/var/log/BackupPC"; +} else { + $Conf{TopDir} ||= $opts{"data-dir"} || "/data/BackupPC"; + $Conf{ConfDir} ||= $opts{"config-dir"} || "$Conf{TopDir}/conf"; + $Conf{InstallDir} ||= $opts{"install-dir"} || "/usr/local/BackupPC"; + $Conf{LogDir} ||= $opts{"log-dir"} || "$Conf{TopDir}/log"; } # @@ -260,7 +266,7 @@ my %Programs = ( foreach my $prog ( sort(keys(%Programs)) ) { my $path; foreach my $subProg ( split(/\//, $prog) ) { - $path = FindProgram("$ENV{PATH}:/bin:/usr/bin:/sbin:/usr/sbin", + $path = FindProgram("$ENV{PATH}:/usr/bin:/bin:/sbin:/usr/sbin", $subProg) if ( !length($path) ); } $Conf{$Programs{$prog}} = $path if ( !length($Conf{$Programs{$prog}}) ); @@ -401,10 +407,8 @@ BackupPC can compress pool files, but it needs the Compress::Zlib package installed (see www.cpan.org). Compression will provide around a 40% reduction in pool size, at the expense of cpu time. You can leave compression off and run BackupPC without compression, in which case you -should leave the compression level at 0 (which means off). You could -install Compress::Zlib and turn compression on later, but read the -documentation first about how to do this. Or the better choice is -to quit, install Compress::Zlib, and re-run configure.pl. +should leave the compression level at 0 (which means off). Or the better +choice is to quit, install Compress::Zlib, and re-run configure.pl. EOF } elsif ( $Conf{CompressLevel} ) { @@ -412,14 +416,12 @@ EOF print <{$param}) ) { + printf("Unkown config parameter %s in --config-override\n", $param); + exit(1); + } + $newConf->[$newVars->{$param}]{text} = $opts{"config-override"}{$param}; +} + # # Now backup and write the config file # @@ -930,6 +951,8 @@ sub InstallFile if ( $prog =~ /Lib.pm/ ); s/__BACKUPPCUSER__/$Conf{BackupPCUser}/g; s/__CGIDIR__/$Conf{CgiDir}/g; + s/__IMAGEDIR__/$Conf{CgiImageDir}/g; + s/__IMAGEDIRURL__/$Conf{CgiImageDirURL}/g; if ( $first && /^#.*bin\/perl/ ) { # # Fill in correct path to perl (no taint for >= 2.0.1). @@ -1212,7 +1235,7 @@ specified for a batch new install. Example: - --html-dir /usr/local/apache/htdocs/BackupPC + --html-dir /var/www/htdocs/BackupPC =item B<--html-dir-url URL> @@ -1286,7 +1309,7 @@ Craig Barratt =head1 COPYRIGHT -Copyright (C) 2001-2006 Craig Barratt. +Copyright (C) 2001-2010 Craig Barratt. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by