From 8068f86c846b143fa62549d94b0a96828c8c331d Mon Sep 17 00:00:00 2001 From: Dan Prince Date: Mon, 7 Jul 2014 16:15:53 -0400 Subject: 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(-) (limited to 'os_net_config') diff --git a/os_net_config/__init__.py b/os_net_config/__init__.py index 484863a..6c6de9b 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 211322b..db9f946 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 b600fd9..95658f8 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 91a6fd2..c0b5455 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 33f302e..ddc6a7b 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 10f3060..baef767 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 19f5e72..e69de29 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 28c9c98..c05b7c6 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 55e926a..d74e405 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 51a2793..ecf8d7d 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 384dc2c..ad45baa 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 41bc55e..0254d45 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 -- cgit 1.2.3-korg