blob: a5c67bb769107f99be6ff1e3567940b4f7c817e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# Copyright (C) 2015 Canonical Ltd.
# Copyright (C) 2015 VMware Inc.
#
# Author: Sankar Tanguturi <stanguturi@vmware.com>
#
# This file is part of cloud-init. See LICENSE file for license information.
class BootProtoEnum(object):
"""Specifies the NIC Boot Settings."""
DHCP = "dhcp"
STATIC = "static"
# vi: ts=4 expandtab
|