summaryrefslogtreecommitdiff
path: root/cloudinit/sources/helpers/vmware/imc/guestcust_state.py
blob: c74fbc8bdc3e9e05d9f77d24f5f1a9552b7d986c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Copyright (C) 2016 Canonical Ltd.
# Copyright (C) 2016 VMware Inc.
#
# Author: Sankar Tanguturi <stanguturi@vmware.com>
#
# This file is part of cloud-init. See LICENSE file for license information.


class GuestCustStateEnum(object):
    """Specifies different states of Guest Customization engine"""

    GUESTCUST_STATE_RUNNING = 4
    GUESTCUST_STATE_DONE = 5


# vi: ts=4 expandtab