summaryrefslogtreecommitdiffstats
path: root/ipa-python
diff options
context:
space:
mode:
authorRob Crittenden <rcritten@redhat.com>2008-02-04 15:15:52 -0500
committerRob Crittenden <rcritten@redhat.com>2008-02-04 15:15:52 -0500
commit97d9c235ddf5274836eb8bfc18e8798ae44614a0 (patch)
tree388960180c6be2b408711b35c27fd5f444e6c801 /ipa-python
parent217019e9de5b72f661c091cc57bc6752c7dc7d14 (diff)
downloadfreeipa-97d9c235ddf5274836eb8bfc18e8798ae44614a0.tar.gz
freeipa-97d9c235ddf5274836eb8bfc18e8798ae44614a0.tar.xz
freeipa-97d9c235ddf5274836eb8bfc18e8798ae44614a0.zip
Set the license uniformly to GPLv2 only.
Diffstat (limited to 'ipa-python')
-rw-r--r--ipa-python/aci.py2
-rw-r--r--ipa-python/config.py2
-rw-r--r--ipa-python/dnsclient.py3
-rw-r--r--ipa-python/entity.py17
-rw-r--r--ipa-python/group.py17
-rw-r--r--ipa-python/ipaadminutil.py2
-rw-r--r--ipa-python/ipaclient.py2
-rw-r--r--ipa-python/ipaerror.py2
-rw-r--r--ipa-python/ipautil.py2
-rw-r--r--ipa-python/ipavalidate.py2
-rw-r--r--ipa-python/krbtransport.py2
-rw-r--r--ipa-python/rpcclient.py2
-rw-r--r--ipa-python/setup.py17
-rw-r--r--ipa-python/test/test_aci.py2
-rw-r--r--ipa-python/test/test_ipautil.py2
-rw-r--r--ipa-python/test/test_ipavalidate.py2
-rw-r--r--ipa-python/user.py17
17 files changed, 81 insertions, 14 deletions
diff --git a/ipa-python/aci.py b/ipa-python/aci.py
index d35da8dab..5d5981431 100644
--- a/ipa-python/aci.py
+++ b/ipa-python/aci.py
@@ -3,7 +3,7 @@
#
# 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; version 2 or later
+# published by the Free Software Foundation; version 2 only
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/ipa-python/config.py b/ipa-python/config.py
index c1a3915d0..52f5794c0 100644
--- a/ipa-python/config.py
+++ b/ipa-python/config.py
@@ -5,7 +5,7 @@
#
# 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; version 2 or later
+# published by the Free Software Foundation; version 2 only
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/ipa-python/dnsclient.py b/ipa-python/dnsclient.py
index bc8a229cd..f301136c5 100644
--- a/ipa-python/dnsclient.py
+++ b/ipa-python/dnsclient.py
@@ -3,8 +3,7 @@
#
# This 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.
+# the Free Software Foundation; either version 2 only
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/ipa-python/entity.py b/ipa-python/entity.py
index ff6478c41..81d2dd283 100644
--- a/ipa-python/entity.py
+++ b/ipa-python/entity.py
@@ -1,3 +1,20 @@
+# Copyright (C) 2007 Red Hat
+# see file 'COPYING' for use and warranty information
+#
+# 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; version 2 only
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+#
+
import ldap
import ldif
import re
diff --git a/ipa-python/group.py b/ipa-python/group.py
index d4a27624a..342a905bd 100644
--- a/ipa-python/group.py
+++ b/ipa-python/group.py
@@ -1,3 +1,20 @@
+# Copyright (C) 2007 Red Hat
+# see file 'COPYING' for use and warranty information
+#
+# 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; version 2 only
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+#
+
from ipa.entity import Entity
class Group(Entity):
diff --git a/ipa-python/ipaadminutil.py b/ipa-python/ipaadminutil.py
index 0acc75b04..444abdbd1 100644
--- a/ipa-python/ipaadminutil.py
+++ b/ipa-python/ipaadminutil.py
@@ -5,7 +5,7 @@
#
# 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; version 2 or later
+# published by the Free Software Foundation; version 2 only
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/ipa-python/ipaclient.py b/ipa-python/ipaclient.py
index 6d2e58a68..83cdf0e6b 100644
--- a/ipa-python/ipaclient.py
+++ b/ipa-python/ipaclient.py
@@ -5,7 +5,7 @@
#
# 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; version 2 or later
+# published by the Free Software Foundation; version 2 only
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/ipa-python/ipaerror.py b/ipa-python/ipaerror.py
index 59e262018..34837face 100644
--- a/ipa-python/ipaerror.py
+++ b/ipa-python/ipaerror.py
@@ -3,7 +3,7 @@
#
# 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; version 2 or later
+# published by the Free Software Foundation; version 2 only
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/ipa-python/ipautil.py b/ipa-python/ipautil.py
index ba12f3948..4b1feb4c9 100644
--- a/ipa-python/ipautil.py
+++ b/ipa-python/ipautil.py
@@ -5,7 +5,7 @@
#
# 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; version 2 or later
+# published by the Free Software Foundation; version 2 only
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/ipa-python/ipavalidate.py b/ipa-python/ipavalidate.py
index 36d94e02d..4dc7fe1a6 100644
--- a/ipa-python/ipavalidate.py
+++ b/ipa-python/ipavalidate.py
@@ -5,7 +5,7 @@
#
# 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; version 2 or later
+# published by the Free Software Foundation; version 2 only
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/ipa-python/krbtransport.py b/ipa-python/krbtransport.py
index c3bbe8860..3d13fed0f 100644
--- a/ipa-python/krbtransport.py
+++ b/ipa-python/krbtransport.py
@@ -5,7 +5,7 @@
#
# 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; version 2 or later
+# published by the Free Software Foundation; version 2 only
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/ipa-python/rpcclient.py b/ipa-python/rpcclient.py
index 752b1c38d..19a63410f 100644
--- a/ipa-python/rpcclient.py
+++ b/ipa-python/rpcclient.py
@@ -5,7 +5,7 @@
#
# 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; version 2 or later
+# published by the Free Software Foundation; version 2 only
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/ipa-python/setup.py b/ipa-python/setup.py
index 9611367a6..a48b8e690 100644
--- a/ipa-python/setup.py
+++ b/ipa-python/setup.py
@@ -1,4 +1,21 @@
#!/usr/bin/env python
+# Copyright (C) 2007 Red Hat
+# see file 'COPYING' for use and warranty information
+#
+# 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; version 2 only
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+#
+
"""FreeIPA python support library
FreeIPA is a server for identity, policy, and audit.
diff --git a/ipa-python/test/test_aci.py b/ipa-python/test/test_aci.py
index 5556deb32..fb9d84c7f 100644
--- a/ipa-python/test/test_aci.py
+++ b/ipa-python/test/test_aci.py
@@ -5,7 +5,7 @@
#
# 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; version 2 or later
+# published by the Free Software Foundation; version 2 only
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/ipa-python/test/test_ipautil.py b/ipa-python/test/test_ipautil.py
index 2755f71ea..60d53a270 100644
--- a/ipa-python/test/test_ipautil.py
+++ b/ipa-python/test/test_ipautil.py
@@ -5,7 +5,7 @@
#
# 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; version 2 or later
+# published by the Free Software Foundation; version 2 only
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/ipa-python/test/test_ipavalidate.py b/ipa-python/test/test_ipavalidate.py
index 677866d04..de4693c36 100644
--- a/ipa-python/test/test_ipavalidate.py
+++ b/ipa-python/test/test_ipavalidate.py
@@ -5,7 +5,7 @@
#
# 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; version 2 or later
+# published by the Free Software Foundation; version 2 only
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/ipa-python/user.py b/ipa-python/user.py
index cd908e3af..d638cc4a7 100644
--- a/ipa-python/user.py
+++ b/ipa-python/user.py
@@ -1,3 +1,20 @@
+# Copyright (C) 2007 Red Hat
+# see file 'COPYING' for use and warranty information
+#
+# 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; version 2 only
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+#
+
from ipa.entity import Entity
class User(Entity):