We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0d139e2 + bc61485 commit c06b3d4Copy full SHA for c06b3d4
pkgroot/usr/local/vfuse/bin/vfuse
@@ -747,6 +747,9 @@ def main():
747
parser.add_argument(
748
"-e", "--esx", help="Create pre-allocated ESX-type VMDK", action="store_true"
749
)
750
+ parser.add_argument(
751
+ "--disk_type", help="Set the VMDK options", type=int
752
+ )
753
parser.add_argument("-p", "--packer", help="Populate a packer template")
754
parser.add_argument("-d", help="Path to CD/DVD ISO path ", default=None)
755
parser.add_argument("--hw-model", help="Custom hardware model", default=None)
@@ -927,6 +930,9 @@ def main():
927
930
if args.esx:
928
931
disk_type = 4
929
932
933
+ if args.disk_type:
934
+ disk_type = args.disk_type
935
+
936
if args.packer:
937
packer_template = args.packer
938
0 commit comments