X-Git-Url: https://git.proxmox.com/?a=blobdiff_plain;f=vzdump-hook-script.pl;h=4d530cef47a558dbb1b05720748c8bad0872bfd5;hb=463b9b8219014e43121621d1aba52e6319ebf966;hp=a9dbb893ee0d13329cc3048f3a804ff6d380baa8;hpb=85cf35f894e66def6e7386f28c9583744bcebbdc;p=pve-manager.git diff --git a/vzdump-hook-script.pl b/vzdump-hook-script.pl index a9dbb893..4d530cef 100755 --- a/vzdump-hook-script.pl +++ b/vzdump-hook-script.pl @@ -11,22 +11,37 @@ 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-init' || + $phase eq 'job-start' || + $phase eq 'job-end' || + $phase eq 'job-abort') { + # undef for Proxmox Backup Server storages + # undef in phase 'job-init' except when --dumpdir is used directly my $dumpdir = $ENV{DUMPDIR}; + # undef when --dumpdir is used directly my $storeid = $ENV{STOREID}; - print "HOOK-ENV: dumpdir=$dumpdir;storeid=$storeid\n"; + print "HOOK-ENV: "; + print "dumpdir=$dumpdir;" if defined($dumpdir); + print "storeid=$storeid;" if defined($storeid); + print "\n"; + + # example: wake up remote storage node and enable storage + if ($phase eq 'job-init') { + #system("wakeonlan AA:BB:CC:DD:EE:FF"); + #sleep(30); + #system ("/sbin/pvesm set $storeid --disable 0") == 0 || + # die "enabling storage $storeid failed"; + } - # 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') { @@ -35,34 +50,41 @@ if ($phase eq 'job-start' || my $vmid = shift; - my $vmtype = $ENV{VMTYPE}; # openvz/qemu + my $vmtype = $ENV{VMTYPE}; # lxc/qemu + # undef for Proxmox Backup Server storages my $dumpdir = $ENV{DUMPDIR}; + # undef when --dumpdir is used directly my $storeid = $ENV{STOREID}; my $hostname = $ENV{HOSTNAME}; - # tarfile is only available in phase 'backup-end' - my $tarfile = $ENV{TARFILE}; + # target is only available in phase 'backup-end' + my $target = $ENV{TARGET}; # logfile is only available in phase 'log-end' - my $logfile = $ENV{LOGFILE}; + # undef for Proxmox Backup Server storages + my $logfile = $ENV{LOGFILE}; - print "HOOK-ENV: vmtype=$vmtype;dumpdir=$dumpdir;storeid=$storeid;hostname=$hostname;tarfile=$tarfile;logfile=$logfile\n"; + print "HOOK-ENV: "; + for my $var (qw(vmtype dumpdir storeid hostname target logfile)) { + print "$var=$ENV{uc($var)};" if defined($ENV{uc($var)}); + } + print "\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 $target 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'";