Add all files needed to bring up VM and run agaric.com locally
This commit is contained in:
parent
52c8b60bac
commit
4d2bc0ee24
742 changed files with 24037 additions and 0 deletions
12
box/provisioning/roles/geerlingguy.mysql/tasks/users.yml
Normal file
12
box/provisioning/roles/geerlingguy.mysql/tasks/users.yml
Normal file
|
@ -0,0 +1,12 @@
|
|||
---
|
||||
- name: Ensure MySQL users are present.
|
||||
mysql_user:
|
||||
name: "{{ item.name }}"
|
||||
host: "{{ item.host | default('localhost') }}"
|
||||
password: "{{ item.password }}"
|
||||
priv: "{{ item.priv | default('*.*:USAGE') }}"
|
||||
state: "{{ item.state | default('present') }}"
|
||||
append_privs: "{{ item.append_privs | default('no') }}"
|
||||
encrypted: "{{ item.encrypted | default('no') }}"
|
||||
with_items: "{{ mysql_users }}"
|
||||
no_log: true
|
Loading…
Add table
Add a link
Reference in a new issue