diff options
author | Sankar Tanguturi <stanguturi@stanguturi-rhel> | 2016-01-19 18:24:54 -0800 |
---|---|---|
committer | Sankar Tanguturi <stanguturi@stanguturi-rhel> | 2016-01-19 18:24:54 -0800 |
commit | 415c45a2b9b66603e672e8ea54cee8f40a19abd1 (patch) | |
tree | fdfa6a5e27a810448dade2a5d48871e9732c1977 /cloudinit/sources/helpers/vmware/imc/boot_proto.py | |
parent | 8d9e5bd7fcda8f56a4fe087150db1456af738335 (diff) | |
download | vyos-cloud-init-415c45a2b9b66603e672e8ea54cee8f40a19abd1.tar.gz vyos-cloud-init-415c45a2b9b66603e672e8ea54cee8f40a19abd1.zip |
Fixed all the review comments from Daniel.
Added a new file i.e. nic_base.py which will be used a base calls for all
NIC related configuration.
Modified some code in nic.py.
Diffstat (limited to 'cloudinit/sources/helpers/vmware/imc/boot_proto.py')
-rw-r--r-- | cloudinit/sources/helpers/vmware/imc/boot_proto.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cloudinit/sources/helpers/vmware/imc/boot_proto.py b/cloudinit/sources/helpers/vmware/imc/boot_proto.py index abfffd75..faba5887 100644 --- a/cloudinit/sources/helpers/vmware/imc/boot_proto.py +++ b/cloudinit/sources/helpers/vmware/imc/boot_proto.py @@ -18,7 +18,7 @@ # along with this program. If not, see <http://www.gnu.org/licenses/>.
-class BootProto:
+class BootProtoEnum:
"""Specifies the NIC Boot Settings."""
DHCP = 'dhcp'
|