X-Git-Url: http://git.rot13.org/?p=BackupPC.git;a=blobdiff_plain;f=lib%2FBackupPC%2FCGI%2FStartStopBackup.pm;h=8163740f14e3d724024b6cf7ea2095436e566e36;hp=8e6df0e3ac10736a9d4cc93506d2456c735e9ff8;hb=9cf3998c4ef71332dea96ff3115daf8b9f722acb;hpb=ce708288691ba7dd95a8dac7a468bc0e4c1d6588 diff --git a/lib/BackupPC/CGI/StartStopBackup.pm b/lib/BackupPC/CGI/StartStopBackup.pm index 8e6df0e..8163740 100644 --- a/lib/BackupPC/CGI/StartStopBackup.pm +++ b/lib/BackupPC/CGI/StartStopBackup.pm @@ -10,7 +10,7 @@ # Craig Barratt # # COPYRIGHT -# Copyright (C) 2003 Craig Barratt +# Copyright (C) 2003-2009 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 @@ -28,7 +28,7 @@ # #======================================================================== # -# Version 2.1.0beta0, released 20 Mar 2004. +# Version 3.2.0beta0, released 5 April 2009. # # See http://backuppc.sourceforge.net. # @@ -43,9 +43,9 @@ sub action { my($str, $reply); - my $start = 1 if ( $In{action} eq $Lang->{Start_Incr_Backup} - || $In{action} eq $Lang->{Start_Full_Backup} ); - my $doFull = $In{action} eq $Lang->{Start_Full_Backup} ? 1 : 0; + my $start = 1 if ( $In{action} eq "Start_Incr_Backup" + || $In{action} eq "Start_Full_Backup" ); + my $doFull = $In{action} eq "Start_Full_Backup" ? 1 : 0; my $type = $doFull ? $Lang->{Type_full} : $Lang->{Type_incr}; my $host = $In{host}; my $Privileged = CheckPermission($host); @@ -76,7 +76,14 @@ sub action Trailer(); } else { if ( $start ) { - my $ipAddr = ConfirmIPAddress($host); + $bpc->ConfigRead($host); + %Conf = $bpc->Conf(); + + my $checkHost = $host; + $checkHost = $Conf{ClientNameAlias} + if ( $Conf{ClientNameAlias} ne "" ); + my $ipAddr = ConfirmIPAddress($checkHost); + my $buttonText = $Lang->{$In{action}}; my $content = eval("qq{$Lang->{Are_you_sure_start}}"); Header(eval("qq{$Lang->{BackupPC__Start_Backup_Confirm_on__host}}"),$content); } else { @@ -86,6 +93,7 @@ sub action $backoff = sprintf("%.1f", ($StatusHost{backoffTime} - time) / 3600); } + my $buttonText = $Lang->{$In{action}}; my $content = eval ("qq{$Lang->{Are_you_sure_stop}}"); Header(eval("qq{$Lang->{BackupPC__Stop_Backup_Confirm_on__host}}"), $content);