api: add VIR_DOMAIN_UNDEFINE_KEEP_NVRAM flag

This flags specifies to keep nvram file if it is existed for inactive
domains.

Signed-off-by: Nikolay Shirokovskiy <nshirokovskiy@virtuozzo.com>
This commit is contained in:
Nikolay Shirokovskiy 2016-05-27 11:05:14 +03:00 committed by Michal Privoznik
parent b87703cf79
commit bdf83c011d

View File

@ -1616,6 +1616,7 @@ typedef enum {
snapshot metadata */
VIR_DOMAIN_UNDEFINE_NVRAM = (1 << 2), /* Also remove any
nvram file */
VIR_DOMAIN_UNDEFINE_KEEP_NVRAM = (1 << 3), /* Keep nvram file */
/* Future undefine control flags should come here. */
} virDomainUndefineFlagsValues;