diff options
author | Brian Coca <brian.coca+git@gmail.com> | 2015-07-30 14:48:59 -0400 |
---|---|---|
committer | Brian Coca <brian.coca+git@gmail.com> | 2015-07-30 14:48:59 -0400 |
commit | 27bf1934839719ed032fc90d137453d3dc0ee99d (patch) | |
tree | c77fe208b9a1b492e65c39700a25907d60b609ba /database/postgresql/postgresql_lang.py | |
parent | 50f4b2c3de3b2530cceda4e3209c8fbafbedb941 (diff) | |
download | ansible-modules-extras-27bf1934839719ed032fc90d137453d3dc0ee99d.tar.gz |
added missing license headers
fixes #508
Diffstat (limited to 'database/postgresql/postgresql_lang.py')
-rw-r--r-- | database/postgresql/postgresql_lang.py | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/database/postgresql/postgresql_lang.py b/database/postgresql/postgresql_lang.py index f3b1baa4..ccee9319 100644 --- a/database/postgresql/postgresql_lang.py +++ b/database/postgresql/postgresql_lang.py @@ -1,8 +1,22 @@ #!/usr/bin/python # -*- coding: utf-8 -*- - +# # (c) 2014, Jens Depuydt <http://www.jensd.be> - +# +# 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 <http://www.gnu.org/licenses/>. DOCUMENTATION = ''' --- module: postgresql_lang |