diff options
author | Zhijiang Hu <hu.zhijiang@zte.com.cn> | 2017-03-07 01:43:27 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-03-07 01:43:27 +0000 |
commit | d222c03bc58c79d918001773639d0f81a57c86a8 (patch) | |
tree | 34ed1d7ca0ae2916c124bbcd1611343375305f0f /deploy/post/execute.py | |
parent | fad85bb5ecb07240f909ad812bf58c194bc10453 (diff) | |
parent | d4b8505d4fef4a0ff650653a3056327f866d70fd (diff) |
Merge "add framework of post deploy process"
Diffstat (limited to 'deploy/post/execute.py')
-rw-r--r-- | deploy/post/execute.py | 17 |
1 files changed, 17 insertions, 0 deletions
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() |