Ne pas utiliser les chemins absolus vers lvcreate et lvremove

tags/virt-backup-0.2.12-1
Daniel Berteaud 12 years ago
parent a024cff82f
commit 7ff3a6b0a0
  1. 4
      virt-backup

@ -71,9 +71,9 @@ $opts{connect} = "qemu:///system";
# Compression used with the dump action (the compression is done on the fly)
$opts{compress} = 'none';
# lvcreate path
$opts{lvcreate} = '/usr/sbin/lvcreate -c 512';
$opts{lvcreate} = 'lvcreate -c 512';
# lvremove path
$opts{lvremove} = '/usr/sbin/lvremove';
$opts{lvremove} = 'lvremove';
# chunkfs path
$opts{chunkfs} = '/usr/bin/chunkfs';
# Size of chunks to use with chunkfs or or blocks with dd in bytes (default to 256kB)

Loading…
Cancel
Save