1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Fixes #4093: Add decommissioning for vms

This commit is contained in:
kobayashi
2020-02-06 03:20:59 -05:00
parent a08ee68033
commit ca56fc709a
3 changed files with 8 additions and 3 deletions

View File

@@ -11,17 +11,20 @@ class VirtualMachineStatusChoices(ChoiceSet):
STATUS_ACTIVE = 'active'
STATUS_OFFLINE = 'offline'
STATUS_STAGED = 'staged'
STATUS_DECOMMISSIONING = 'decommissioning'
CHOICES = (
(STATUS_ACTIVE, 'Active'),
(STATUS_OFFLINE, 'Offline'),
(STATUS_STAGED, 'Staged'),
(STATUS_DECOMMISSIONING, 'Decommissioning'),
)
LEGACY_MAP = {
STATUS_OFFLINE: 0,
STATUS_ACTIVE: 1,
STATUS_STAGED: 3,
STATUS_DECOMMISSIONING: 4,
}