diff options
Diffstat (limited to 'cloudinit/sources/helpers/vmware/imc/boot_proto.py')
-rw-r--r-- | cloudinit/sources/helpers/vmware/imc/boot_proto.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/cloudinit/sources/helpers/vmware/imc/boot_proto.py b/cloudinit/sources/helpers/vmware/imc/boot_proto.py new file mode 100644 index 00000000..6c3b070a --- /dev/null +++ b/cloudinit/sources/helpers/vmware/imc/boot_proto.py @@ -0,0 +1,11 @@ +# from enum import Enum
+
+class BootProto:
+ DHCP = 'dhcp'
+ STATIC = 'static'
+
+# def __eq__(self, other):
+# return self.name == other.name and self.value == other.value
+#
+# def __ne__(self, other):
+# return not self.__eq__(other)
|