Commit 0725dd8d by Michael DeHaan

Merge pull request #218 from marktheunissen/fix_password

Fix parameter names in documentation: passwd doesn't exist anymore
parents aca23f94 ad9e2939
......@@ -41,7 +41,7 @@ Example privileges string format:
Example action from Ansible :doc:`playbooks`::
- name: Create database user
action: mysql_user name=bob passwd=12345 priv=*.*:ALL state=present
action: mysql_user name=bob password=12345 priv=*.*:ALL state=present
- name: Ensure no user named 'sally' exists, also passing in the auth credentials.
action: mysql_user login_user=root login_password=123456 name=sally state=absent
......@@ -42,6 +42,6 @@ Creates user accounts, manipulates existing user accounts, and removes user acco
Example action from Ansible :doc:`playbooks`::
user name=mdehaan comment=awesome passwd=awWxVV.JvmdHw createhome=yes
user name=mdehaan comment=awesome password=awWxVV.JvmdHw createhome=yes
user name=mdehaan groups=wheel,skynet
user name=mdehaan state=absent force=yes
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment