]> git.proxmox.com Git - pve-manager.git/commitdiff
Whitespace cleanup
authorHerman van Rink <helmo@initfour.nl>
Fri, 9 Mar 2018 10:32:32 +0000 (11:32 +0100)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Fri, 9 Mar 2018 16:11:23 +0000 (17:11 +0100)
Signed-off-by: Herman van Rink <rink@initfour.nl>
vzdump-hook-script.pl

index a9dbb893ee0d13329cc3048f3a804ff6d380baa8..d7218e317db681bc371b4a8fdee41a16dc5a565d 100755 (executable)
@@ -11,9 +11,9 @@ print "HOOK: " . join (' ', @ARGV) . "\n";
 
 my $phase = shift;
 
-if ($phase eq 'job-start' || 
-    $phase eq 'job-end'  || 
-    $phase eq 'job-abort') { 
+if ($phase eq 'job-start' ||
+    $phase eq 'job-end'  ||
+    $phase eq 'job-abort') {
 
     my $dumpdir = $ENV{DUMPDIR};
 
@@ -21,12 +21,12 @@ if ($phase eq 'job-start' ||
 
     print "HOOK-ENV: dumpdir=$dumpdir;storeid=$storeid\n";
 
-    # do what you want 
+    # do what you want
 
-} elsif ($phase eq 'backup-start' || 
+} elsif ($phase eq 'backup-start' ||
         $phase eq 'backup-end' ||
-        $phase eq 'backup-abort' || 
-        $phase eq 'log-end' || 
+        $phase eq 'backup-abort' ||
+        $phase eq 'log-end' ||
         $phase eq 'pre-stop' ||
         $phase eq 'pre-restart' ||
         $phase eq 'post-restart') {
@@ -47,22 +47,22 @@ if ($phase eq 'job-start' ||
     my $tarfile = $ENV{TARFILE};
 
     # logfile is only available in phase 'log-end'
-    my $logfile = $ENV{LOGFILE}; 
+    my $logfile = $ENV{LOGFILE};
 
     print "HOOK-ENV: vmtype=$vmtype;dumpdir=$dumpdir;storeid=$storeid;hostname=$hostname;tarfile=$tarfile;logfile=$logfile\n";
 
     # example: copy resulting backup file to another host using scp
     if ($phase eq 'backup-end') {
-       #system ("scp $tarfile backup-host:/backup-dir") == 0 ||
-       #    die "copy tar file to backup-host failed";
+        #system ("scp $tarfile backup-host:/backup-dir") == 0 ||
+        #    die "copy tar file to backup-host failed";
     }
 
     # example: copy resulting log file to another host using scp
     if ($phase eq 'log-end') {
-       #system ("scp $logfile backup-host:/backup-dir") == 0 ||
-       #    die "copy log file to backup-host failed";
+        #system ("scp $logfile backup-host:/backup-dir") == 0 ||
+        #    die "copy log file to backup-host failed";
     }
-    
+
 } else {
 
     die "got unknown phase '$phase'";