From 3c7c2275b2d4660b83db9495c5f6ece5c6557b43 Mon Sep 17 00:00:00 2001 From: Jordan Augé Date: Sat, 25 Mar 2017 02:00:42 +0100 Subject: Misc. improvements to vICN codebase detailed below. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - vICN core . Added python setup script (allowing package installation) . Better error handling - Resources . LXD : better handling of certificate generation . Physical : generation of SSH keypair within vICN . Link : code simplification . EmulatedLteChannel: fixed typo in netmask configuration of emu-radio (missing /) - Examples . Added json file for tutorial #2 - Dumbell . New tutorial #03 - Load balancing in WiFi/LTE hetnet - Other minor changes incl. code cleanup (trailing spaces, etc.) Change-Id: Id306ca71e27d9859aa72760f63a2bc364bfe8159 Signed-off-by: Jordan Augé --- vicn/core/state.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'vicn/core/state.py') diff --git a/vicn/core/state.py b/vicn/core/state.py index d5069b24..c32b8237 100644 --- a/vicn/core/state.py +++ b/vicn/core/state.py @@ -46,6 +46,7 @@ class ResourceState: PENDING_UPDATE = 'PENDING_UPDATE' PENDING_DELETE = 'PENDING_DELETE' DELETED = 'DELETED' + ERROR = 'ERROR' class AttributeState: UNINITIALIZED = 'UNINITIALIZED' @@ -54,6 +55,7 @@ class AttributeState: PENDING_INIT = 'PENDING_INIT' PENDING_UPDATE = 'PENDING_UPDATE' CLEAN = 'CLEAN' + ERROR = 'ERROR' class Operations: SET = 'set' -- cgit 1.2.3-korg