diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2015-07-12 11:31:18 +0200 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2015-07-12 11:31:18 +0200 |
commit | b752a80935941eb07e7700d8cbab567d1a3f39c4 (patch) | |
tree | 3c3e907dc5445ec519bf8fc5daaf1ef12379eb69 /lib | |
parent | 99682f43e687552c0c536ed044afb7331d90a01d (diff) |
Rename 'mysql_user' plugin to 'mysql_user2' to avoid name collisions.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/modules/mysql_user2 (renamed from lib/modules/mysql_user) | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/modules/mysql_user b/lib/modules/mysql_user2 index 054698e..d10e3e0 100644 --- a/lib/modules/mysql_user +++ b/lib/modules/mysql_user2 @@ -3,41 +3,41 @@ # (c) 2012, Mark Theunissen <mark.theunissen@gmail.com> # Sponsored by Four Kitchens http://fourkitchens.com. # # 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: mysql_user +module: mysql_user2 short_description: Adds or removes a user from a MySQL database. description: - Adds or removes a user from a MySQL database. version_added: "0.6" options: name: description: - name of the user (role) to add or remove required: true default: null password: description: - set the user's password required: false default: null host: description: - the 'host' part of the MySQL username required: false default: localhost |