From 8068f86c846b143fa62549d94b0a96828c8c331d Mon Sep 17 00:00:00 2001 From: Dan Prince Date: Mon, 7 Jul 2014 16:15:53 -0400 Subject: [PATCH] Add copyrights to files. --- os_net_config/__init__.py | 2 ++ os_net_config/cli.py | 2 ++ os_net_config/impl_eni.py | 3 ++- os_net_config/impl_ifcfg.py | 2 ++ os_net_config/impl_iproute.py | 2 ++ os_net_config/objects.py | 2 ++ os_net_config/tests/__init__.py | 13 ------------- os_net_config/tests/test_impl_eni.py | 3 ++- os_net_config/tests/test_impl_ifcfg.py | 2 ++ os_net_config/tests/test_objects.py | 2 ++ os_net_config/tests/test_os_net_config.py | 2 ++ os_net_config/utils.py | 2 ++ 12 files changed, 22 insertions(+), 15 deletions(-) diff --git a/os_net_config/__init__.py b/os_net_config/__init__.py index 484863a8..6c6de9ba 100644 --- a/os_net_config/__init__.py +++ b/os_net_config/__init__.py @@ -1,5 +1,7 @@ # -*- coding: utf-8 -*- +# Copyright 2014 Red Hat, Inc. +# # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain # a copy of the License at diff --git a/os_net_config/cli.py b/os_net_config/cli.py index 211322b0..db9f9461 100755 --- a/os_net_config/cli.py +++ b/os_net_config/cli.py @@ -1,5 +1,7 @@ # -*- coding: utf-8 -*- +# Copyright 2014 Red Hat, Inc. +# # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain # a copy of the License at diff --git a/os_net_config/impl_eni.py b/os_net_config/impl_eni.py index b600fd97..95658f85 100644 --- a/os_net_config/impl_eni.py +++ b/os_net_config/impl_eni.py @@ -1,6 +1,7 @@ - # -*- coding: utf-8 -*- +# Copyright 2014 Red Hat, Inc. +# # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain # a copy of the License at diff --git a/os_net_config/impl_ifcfg.py b/os_net_config/impl_ifcfg.py index 91a6fd25..c0b54552 100644 --- a/os_net_config/impl_ifcfg.py +++ b/os_net_config/impl_ifcfg.py @@ -1,5 +1,7 @@ # -*- coding: utf-8 -*- +# Copyright 2014 Red Hat, Inc. +# # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain # a copy of the License at diff --git a/os_net_config/impl_iproute.py b/os_net_config/impl_iproute.py index 33f302ef..ddc6a7b0 100644 --- a/os_net_config/impl_iproute.py +++ b/os_net_config/impl_iproute.py @@ -1,5 +1,7 @@ # -*- coding: utf-8 -*- +# Copyright 2014 Red Hat, Inc. +# # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain # a copy of the License at diff --git a/os_net_config/objects.py b/os_net_config/objects.py index 10f3060f..baef767e 100644 --- a/os_net_config/objects.py +++ b/os_net_config/objects.py @@ -1,5 +1,7 @@ # -*- coding: utf-8 -*- +# Copyright 2014 Red Hat, Inc. +# # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain # a copy of the License at diff --git a/os_net_config/tests/__init__.py b/os_net_config/tests/__init__.py index 19f5e722..e69de29b 100644 --- a/os_net_config/tests/__init__.py +++ b/os_net_config/tests/__init__.py @@ -1,13 +0,0 @@ -# -*- coding: utf-8 -*- - -# Licensed under the Apache License, Version 2.0 (the "License"); you may -# not use this file except in compliance with the License. You may obtain -# a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT -# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the -# License for the specific language governing permissions and limitations -# under the License. diff --git a/os_net_config/tests/test_impl_eni.py b/os_net_config/tests/test_impl_eni.py index 28c9c983..c05b7c66 100644 --- a/os_net_config/tests/test_impl_eni.py +++ b/os_net_config/tests/test_impl_eni.py @@ -1,6 +1,7 @@ - # -*- coding: utf-8 -*- +# Copyright 2014 Red Hat, Inc. +# # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain # a copy of the License at diff --git a/os_net_config/tests/test_impl_ifcfg.py b/os_net_config/tests/test_impl_ifcfg.py index 55e926a1..d74e4052 100644 --- a/os_net_config/tests/test_impl_ifcfg.py +++ b/os_net_config/tests/test_impl_ifcfg.py @@ -1,5 +1,7 @@ # -*- coding: utf-8 -*- +# Copyright 2014 Red Hat, Inc. +# # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain # a copy of the License at diff --git a/os_net_config/tests/test_objects.py b/os_net_config/tests/test_objects.py index 51a2793c..ecf8d7d2 100644 --- a/os_net_config/tests/test_objects.py +++ b/os_net_config/tests/test_objects.py @@ -1,5 +1,7 @@ # -*- coding: utf-8 -*- +# Copyright 2014 Red Hat, Inc. +# # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain # a copy of the License at diff --git a/os_net_config/tests/test_os_net_config.py b/os_net_config/tests/test_os_net_config.py index 384dc2c9..ad45baac 100644 --- a/os_net_config/tests/test_os_net_config.py +++ b/os_net_config/tests/test_os_net_config.py @@ -1,5 +1,7 @@ # -*- coding: utf-8 -*- +# Copyright 2014 Red Hat, Inc. +# # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain # a copy of the License at diff --git a/os_net_config/utils.py b/os_net_config/utils.py index 41bc55e6..0254d456 100644 --- a/os_net_config/utils.py +++ b/os_net_config/utils.py @@ -1,5 +1,7 @@ # -*- coding: utf-8 -*- +# Copyright 2014 Red Hat, Inc. +# # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain # a copy of the License at