summaryrefslogtreecommitdiff
path: root/cloudinit/sources/helpers/vmware/imc/guestcust_error.py
blob: 96d839b8b6583b1648eae6f9457ba6f3ee785241 (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 GuestCustErrorEnum(object):
    """Specifies different errors of Guest Customization engine"""

    GUESTCUST_ERROR_SUCCESS = 0
    GUESTCUST_ERROR_SCRIPT_DISABLED = 6
    GUESTCUST_ERROR_WRONG_META_FORMAT = 9

# vi: ts=4 expandtab