Add and update license headers 99/28499/1
authorjose.lausuch <jose.lausuch@ericsson.com>
Sun, 12 Feb 2017 19:40:16 +0000 (20:40 +0100)
committerjose.lausuch <jose.lausuch@ericsson.com>
Sun, 12 Feb 2017 19:40:16 +0000 (20:40 +0100)
Change-Id: I8ccb23c9ffa0d511427ad089b033973ffe96360f
Signed-off-by: jose.lausuch <jose.lausuch@ericsson.com>
34 files changed:
LICENSE
odl-pipeline/lib/common/constants.py
odl-pipeline/lib/flash-all-bridges.sh
odl-pipeline/lib/odl_reinstaller.sh
odl-pipeline/lib/odl_reinstaller/odl_reinstaller.py
odl-pipeline/lib/post_process.sh
odl-pipeline/lib/setup_jenkins_networks.sh
odl-pipeline/lib/test_environment.sh
odl-pipeline/lib/test_environment/test_environment.py
odl-pipeline/lib/tripleo_introspector.sh
odl-pipeline/lib/tripleo_introspector/tripleo_introspector.py
odl-pipeline/lib/utils/node.py
odl-pipeline/lib/utils/node_manager.py
odl-pipeline/lib/utils/processutils.py
odl-pipeline/lib/utils/service.py
odl-pipeline/lib/utils/shutil.py
odl-pipeline/lib/utils/ssh_client.py
odl-pipeline/lib/utils/ssh_util.py
odl-pipeline/lib/utils/tripleo_helper.py
odl-pipeline/lib/utils/utils_log.py
odl-pipeline/lib/utils/utils_yaml.py
odl-pipeline/odl-pipeline-common.sh
odl-pipeline/setup.sh
sdnvpn/lib/config.py
sdnvpn/lib/results.py
sdnvpn/lib/utils.py
sdnvpn/test/functest/run_tests.py
sdnvpn/test/functest/tempest.py
sdnvpn/test/functest/testcase_1.py
sdnvpn/test/functest/testcase_2.py
sdnvpn/test/functest/testcase_3.py
sdnvpn/test/functest/testcase_4.py
sdnvpn/test/functest/testcase_7.py
sdnvpn/test/functest/testcase_8.py

diff --git a/LICENSE b/LICENSE
index f4346f8..8268140 100644 (file)
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,4 @@
-Copyright 2015 Open Platform for NFV Project, Inc. and its contributors
+Copyright 2017 Open Platform for NFV Project, Inc. and its contributors
 
    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
index bf5de63..4c8b570 100644 (file)
@@ -1,2 +1,11 @@
+#
+# Copyright (c) 2017 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
+#
+#
 # inside the pod_config dir
 NODE_YAML_PATH = './node.yaml'
index db9d50d..d6588aa 100755 (executable)
@@ -1,4 +1,11 @@
 #!/bin/bash
+#
+# Copyright (c) 2017 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
 export bridges="admin|private|public|storage"
 for br in $(ifconfig |grep -v br-external |grep "^br" |grep -E $bridges |awk '{print $1}');do
   sudo ip addr flush dev $br;
index 4923ed0..cb34489 100644 (file)
@@ -1,4 +1,11 @@
 #!/bin/bash
+#
+# Copyright (c) 2017 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
 DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
 set -e
 export PYTHONPATH=$PYTHONPATH:$DIR
index c7a78c5..655f816 100644 (file)
@@ -1,4 +1,13 @@
 #!/bin/python
+#
+# Copyright (c) 2017 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 re
 import time
 
@@ -13,6 +22,7 @@ from utils import utils_yaml
 
 @for_all_methods(log_enter_exit)
 class ODLReInstaller(Service):
+
     def __init__(self):
         self.netvirt_url = "restconf/operational/network-topology:" \
                            "network-topology/topology/netvirt:1"
@@ -185,6 +195,7 @@ class ODLReInstaller(Service):
 
 
 class ODLReinstallerException(Exception):
+
     def __init__(self, value):
         self.value = value
 
index 36d595f..d5522cf 100755 (executable)
@@ -1,2 +1,9 @@
 #!/bin/bash
+#
+# Copyright (c) 2017 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
 echo "Hello World"
\ No newline at end of file
index d74b62e..b6c5ccc 100755 (executable)
@@ -1,4 +1,11 @@
 #!/bin/bash
+#
+# Copyright (c) 2017 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
 set -e
 cd "$( dirname "${BASH_SOURCE[0]}" )"
 sudo ifdown enp0s4 2&>1 >> /dev/null /dev/null || true
index 520f36a..ac209c6 100755 (executable)
@@ -1,4 +1,11 @@
 #!/bin/bash
+#
+# Copyright (c) 2017 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
 DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
 set -e
 export PYTHONPATH=$PYTHONPATH:$DIR
index 18f568d..65d40bb 100755 (executable)
@@ -1,4 +1,13 @@
 #!/bin/python
+#
+# Copyright (c) 2017 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 os
 from utils.utils_log import LOG, for_all_methods, log_enter_exit
 from utils.service import Service
index 8d1b9de..1f17724 100755 (executable)
@@ -1,4 +1,11 @@
 #!/bin/bash
+#
+# Copyright (c) 2017 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
 DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
 if [ -e ~/stackrc ];then
   . ~/stackrc
index dd378ed..aa6ebbb 100755 (executable)
@@ -1,3 +1,12 @@
+#
+# Copyright (c) 2017 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 os
 import re
 
@@ -102,6 +111,7 @@ class TripleOIntrospector(Service):
 
 
 class TripleOInspectorException(Exception):
+
     def __init__(self, value):
         self.value = value
 
index c3c2005..4fe7e22 100755 (executable)
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2015 All rights reserved
+# Copyright (c) 2017 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
index 8a320ed..fa4c6de 100755 (executable)
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2015 All rights reserved
+# Copyright (c) 2017 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
@@ -45,5 +45,6 @@ class NodeManager(object):
 
 
 class NodeManagerException(Exception):
+
     def __init__(self, value):
         self.value = value
index 2abb88a..98162c8 100755 (executable)
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2015 All rights reserved
+# Copyright (c) 2017 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
@@ -85,6 +85,7 @@ def mask_password(message, secret="***"):
 
 
 class ProcessExecutionError(Exception):
+
     def __init__(self, stdout=None, stderr=None, exit_code=None, cmd=None,
                  description=None):
         self.exit_code = exit_code
index cf46872..a264cea 100755 (executable)
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2015 All rights reserved
+# Copyright (c) 2017 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
index 5f6d482..787820e 100755 (executable)
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2015 All rights reserved
+# Copyright (c) 2017 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
index 464a74e..b38bc37 100755 (executable)
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2015 All rights reserved
+# Copyright (c) 2017 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
index 635a718..4de4e52 100755 (executable)
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2015 All rights reserved
+# Copyright (c) 2017 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
index f49cfe7..0c5695e 100644 (file)
@@ -1,3 +1,12 @@
+#
+# Copyright (c) 2017 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 re
 import processutils
 from processutils import execute
@@ -47,6 +56,7 @@ class TripleoHelper():
 
 
 class TripleOHelperException(Exception):
+
     def __init__(self, value):
         self.value = value
 
index 9d7648f..64590a0 100755 (executable)
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2015 All rights reserved
+# Copyright (c) 2017 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
index b9357f6..e5b42af 100755 (executable)
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2015 All rights reserved
+# Copyright (c) 2017 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
index 6d7cd71..9f2befc 100644 (file)
@@ -1,4 +1,11 @@
 #!/bin/bash
+#
+# Copyright (c) 2017 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
 PIPELINE_HOME=$WORKSPACE/sdnvpn/odl-pipeline
 LIB=$PIPELINE_HOME/lib
 CLONER_INFO=/home/jenkins/cloner-info/
index 2d32bb1..4ec3c4b 100644 (file)
@@ -1,2 +1,9 @@
 #!/bin/bash
+#
+# Copyright (c) 2017 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
 sudo apt-get install -y python python-yaml python-six openvswitch
index f6206cf..7fc0cd4 100644 (file)
@@ -1,3 +1,12 @@
+#!/usr/bin/python
+#
+# Copyright (c) 2017 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 yaml
 import os
 
index f665328..5661d07 100644 (file)
@@ -1,6 +1,6 @@
 #!/usr/bin/python
 #
-# Copyright (c) 2016 All rights reserved
+# Copyright (c) 2017 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
index b551954..00d0fa7 100644 (file)
@@ -1,6 +1,6 @@
 #!/usr/bin/python
 #
-# Copyright (c) 2015 All rights reserved
+# Copyright (c) 2017 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
index 924a0e5..5ca7691 100644 (file)
@@ -1,6 +1,6 @@
 #!/bin/python
 #
-# Copyright (c) 2015 All rights reserved
+# Copyright (c) 2017 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
index 1acbb42..a31c7d5 100644 (file)
@@ -1,6 +1,6 @@
 #!/usr/bin/python
 #
-# Copyright (c) 2015 All rights reserved
+# Copyright (c) 2017 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
index b2ef6d2..a5c1494 100644 (file)
@@ -1,6 +1,6 @@
 #!/usr/bin/python
 #
-# Copyright (c) 2015 All rights reserved
+# Copyright (c) 2017 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
index 5bf2c0f..b3481aa 100644 (file)
@@ -1,6 +1,6 @@
 #!/usr/bin/python
 #
-# Copyright (c) 2015 All rights reserved
+# Copyright (c) 2017 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
index 5a8e9b0..36e2d1a 100644 (file)
@@ -1,6 +1,6 @@
 #!/usr/bin/python
 #
-# Copyright (c) 2015 All rights reserved
+# Copyright (c) 2017 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
index 1cadc51..bb3ea3e 100644 (file)
@@ -1,6 +1,6 @@
 #!/usr/bin/python
 #
-# Copyright (c) 2015 All rights reserved
+# Copyright (c) 2017 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
index 05d40fa..18b6dda 100644 (file)
@@ -1,6 +1,6 @@
 #!/usr/bin/python
 #
-# Copyright (c) 2015 All rights reserved
+# Copyright (c) 2017 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
index 7a0a8c6..3aa0a79 100644 (file)
@@ -1,6 +1,6 @@
 #!/usr/bin/python
 #
-# Copyright (c) 2015 All rights reserved
+# Copyright (c) 2017 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