diff --git a/packaging/rhn_channel b/packaging/rhn_channel
index dac8a7ce09f..05a155f7ca1 100644
--- a/packaging/rhn_channel
+++ b/packaging/rhn_channel
@@ -1,5 +1,22 @@
#!/usr/bin/python
+# (c) Vincent Van de Kussen
+#
+# This file is part of Ansible
+#
+# Ansible 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 3 of the License, or
+# (at your option) any later version.
+#
+# Ansible 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 Ansible. If not, see .
+
DOCUMENTATION = '''
---
module: rhn_channel
diff --git a/packaging/rhn_register b/packaging/rhn_register
index 552dfcc580a..2282469b03e 100644
--- a/packaging/rhn_register
+++ b/packaging/rhn_register
@@ -1,5 +1,22 @@
#!/usr/bin/python
+# (c) James Laska
+#
+# This file is part of Ansible
+#
+# Ansible 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 3 of the License, or
+# (at your option) any later version.
+#
+# Ansible 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 Ansible. If not, see .
+
DOCUMENTATION = '''
---
module: rhn_register
diff --git a/packaging/rpm_key b/packaging/rpm_key
index d60706b157d..56d5ad4b5f6 100644
--- a/packaging/rpm_key
+++ b/packaging/rpm_key
@@ -1,25 +1,23 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
-"""
-Ansible module to import third party repo keys to your rpm db
-(c) 2013, Héctor Acosta
-
-This file is part of Ansible
-
-Ansible 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 3 of the License, or
-(at your option) any later version.
-
-Ansible 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 Ansible. If not, see .
-"""
+# Ansible module to import third party repo keys to your rpm db
+# (c) 2013, Héctor Acosta
+#
+# This file is part of Ansible
+#
+# Ansible 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 3 of the License, or
+# (at your option) any later version.
+#
+# Ansible 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 Ansible. If not, see .
DOCUMENTATION = '''
---