We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 536877e commit 61aa237Copy full SHA for 61aa237
fortigate/docker/launch.py
@@ -55,7 +55,7 @@ def __init__(self, hostname, username, password, conn_mode):
55
self.num_nics = 12
56
self.nic_type = "virtio-net-pci"
57
self.highest_port = 0
58
- self.qemu_args.extend(["-uuid", str(uuid.uuid4())])
+ self.qemu_args.extend(["-uuid", os.getenv("FORTIGATE_UUID") or str(uuid.uuid4())])
59
self.spins = 0
60
self.running = None
61
0 commit comments