File tree 1 file changed +7
-2
lines changed
pkgroot/usr/local/vfuse/bin
1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -687,8 +687,11 @@ def main():
687
687
parser .add_argument ('--stop' , help = 'Stop monitoring of VM' )
688
688
parser .add_argument ('--reset' , help = 'Reset monitored VM' )
689
689
parser .add_argument ('--use-qemu' ,
690
- help = 'Use qemu-img intead of the Fusion CLI tools' ,
691
- action = 'store_true' )
690
+ help = 'Use qemu-img intead of the Fusion CLI tools [/path/to/qemu-img]' ,
691
+ default = False ,
692
+ const = '/usr/local/bin/qemu-img' ,
693
+ nargs = '?' ,
694
+ action = 'store' )
692
695
parser .add_argument ('--recovery' ,
693
696
help = 'Boot into Recovery HD' ,
694
697
action = 'store_true' )
@@ -898,6 +901,8 @@ def main():
898
901
899
902
if args .use_qemu :
900
903
use_qemu = True
904
+ if os .path .exists (args .use_qemu ):
905
+ qemu_path = args .use_qemu
901
906
902
907
if args .recovery :
903
908
recovery = True
You can’t perform that action at this time.
0 commit comments