Add support for addon config.

This commit is contained in:
pvizeli
2017-04-10 11:32:19 +02:00
committed by Pascal Vizeli
parent f127de8059
commit 530f17d502
6 changed files with 131 additions and 15 deletions

View File

@@ -28,3 +28,21 @@ RESULT_OK = 'ok'
ATTR_VERSION = 'version'
ATTR_CURRENT = 'current'
ATTR_BETA = 'beta'
ATTR_NAME = 'name'
ATTR_SLUG = 'slug'
ATTR_DESCRIPTON = 'description'
ATTR_STARTUP = 'startup'
ATTR_BOOT = 'boot'
ATTR_PORTS = 'ports'
ATTR_MAP_CONFIG = 'map_config'
ATTR_MAP_SSL = 'map_ssl'
ATTR_MAP_DATA = 'map_data'
ATTR_OPTIONS = 'options'
ATTR_INSTALLED = 'installed'
STARTUP_BEFORE = 'before'
STARTUP_AFTER = 'after'
STARTUP_ONCE = 'once'
BOOT_START = 'start'
BOOT_STOP = 'stop'
BOOT_MANUAL = 'manual'