From d4b8505d4fef4a0ff650653a3056327f866d70fd Mon Sep 17 00:00:00 2001 From: SerenaFeng Date: Fri, 3 Mar 2017 18:34:16 +0800 Subject: add framework of post deploy process Change-Id: I3f5a067a6359be482a853b164fd7effdfad8fc8f Signed-off-by: SerenaFeng --- deploy/post/execute.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 deploy/post/execute.py (limited to 'deploy/post/execute.py') diff --git a/deploy/post/execute.py b/deploy/post/execute.py new file mode 100644 index 00000000..8758b401 --- /dev/null +++ b/deploy/post/execute.py @@ -0,0 +1,17 @@ +############################################################################## +# Copyright (c) 2017 ZTE Coreporation and others. +# feng.xiaowei@zte.com.cn +# All rights reserved. This program and the accompanying materials +# are made available under the terms of the Apache License, Version 2.0 +# which accompanies this distribution, and is available at +# http://www.apache.org/licenses/LICENSE-2.0 +############################################################################## +import neutron + + +def main(): + neutron.Neutron().list_networks() + + +if __name__ == '__main__': + main() -- cgit 1.2.3-korg