From d4964826f5dcd2dc8aa4527acb516acdf24a512b Mon Sep 17 00:00:00 2001 From: Nir Soffer Date: Jun 17 2019 14:04:23 +0000 Subject: python: Add missing license blob to python files Signed-off-by: Nir Soffer --- diff --git a/python/example.py b/python/example.py index 35d39f5..bec9309 100644 --- a/python/example.py +++ b/python/example.py @@ -1,3 +1,10 @@ +# Copyright (C) 2019 Red Hat, Inc. +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. + from __future__ import print_function import pwd diff --git a/tests/conftest.py b/tests/conftest.py index 868ae46..b40852b 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -1,3 +1,9 @@ +# Copyright (C) 2019 Red Hat, Inc. +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. """ Fixtures for sanlock testing. """ diff --git a/tests/constants.py b/tests/constants.py index 21089b8..3d9c332 100644 --- a/tests/constants.py +++ b/tests/constants.py @@ -1,3 +1,9 @@ +# Copyright (C) 2019 Red Hat, Inc. +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. """ Constants copied from sanlock source. """ diff --git a/tests/daemon_test.py b/tests/daemon_test.py index 413ce95..1b484f2 100644 --- a/tests/daemon_test.py +++ b/tests/daemon_test.py @@ -1,3 +1,9 @@ +# Copyright (C) 2019 Red Hat, Inc. +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. """ Test sanlock client operations. """ diff --git a/tests/direct_test.py b/tests/direct_test.py index 339ef51..579f228 100644 --- a/tests/direct_test.py +++ b/tests/direct_test.py @@ -1,3 +1,9 @@ +# Copyright (C) 2019 Red Hat, Inc. +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. """ Test sanlock direct options. """ diff --git a/tests/python_test.py b/tests/python_test.py index 331e901..0f70a6a 100644 --- a/tests/python_test.py +++ b/tests/python_test.py @@ -1,3 +1,9 @@ +# Copyright (C) 2019 Red Hat, Inc. +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. """ Test sanlock python binding with sanlock daemon. """ diff --git a/tests/storage.py b/tests/storage.py index b7fcb2a..0fe6f56 100644 --- a/tests/storage.py +++ b/tests/storage.py @@ -1,3 +1,9 @@ +# Copyright (C) 2019 Red Hat, Inc. +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. """ storage - provide storage for sanlock tests. """ diff --git a/tests/units.py b/tests/units.py index b47d668..166bff5 100644 --- a/tests/units.py +++ b/tests/units.py @@ -1,3 +1,9 @@ +# Copyright (C) 2019 Red Hat, Inc. +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. """ Constants for file/disk sizes. """ diff --git a/tests/util.py b/tests/util.py index 6a648c4..12f2702 100644 --- a/tests/util.py +++ b/tests/util.py @@ -1,3 +1,9 @@ +# Copyright (C) 2019 Red Hat, Inc. +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. """ Testing utilities """