From 64683c9987f8425ed170024e096d76bb06372657 Mon Sep 17 00:00:00 2001 From: vincent Date: Mon, 15 Apr 2019 13:38:47 +0200 Subject: [PATCH] set mariadb --- tasks/main.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/tasks/main.yml b/tasks/main.yml index b06630c..a5eba89 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -15,7 +15,6 @@ name: "{{user.name}}" # required. Name of the user to create, remove or modify. skeleton: false # not required. Optionally set a home skeleton directory. Requires create_home option! create_home: yes # not required. Unless set to C(no), a home directory will be made for the user when the account is created or if the home directory does not exist.,Changed from C(createhome) to C(create_home) in version 2.5. - uid: "{{uid}}" password: "{{userPassword}}" # not required. Optionally set the user's password to this crypted value.,On macOS systems, this value has to be cleartext. Beware of security issues.,See U(https://docs.ansible.com/ansible/faq.html#how-do-i-generate-crypted-passwords-for-the-user-module) for details on various ways to generate these password values. system: no # not required. When creating an account C(state=present), setting this to C(yes) makes the user a system account. This setting cannot be changed on existing users. state: present # not required. choices: absent;present. Whether the account should exist or not, taking action if the state is different from what is stated.