summaryrefslogtreecommitdiff
path: root/cloudinit/sources/helpers/vmware/imc/guestcust_error.py
blob: 65ae73902587c9525074849b59beb5e4d4d1a461 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# 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 GuestCustErrorEnum(object):
    """Specifies different errors of Guest Customization engine"""

    GUESTCUST_ERROR_SUCCESS = 0
    GUESTCUST_ERROR_SCRIPT_DISABLED = 6

# vi: ts=4 expandtab