aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--os_net_config/__init__.py2
-rwxr-xr-xos_net_config/cli.py2
-rw-r--r--os_net_config/impl_eni.py3
-rw-r--r--os_net_config/impl_ifcfg.py2
-rw-r--r--os_net_config/impl_iproute.py2
-rw-r--r--os_net_config/objects.py2
-rw-r--r--os_net_config/tests/__init__.py13
-rw-r--r--os_net_config/tests/test_impl_eni.py3
-rw-r--r--os_net_config/tests/test_impl_ifcfg.py2
-rw-r--r--os_net_config/tests/test_objects.py2
-rw-r--r--os_net_config/tests/test_os_net_config.py2
-rw-r--r--os_net_config/utils.py2
12 files changed, 22 insertions, 15 deletions
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