Skip to content

Commit b837c66

Browse files
committed
Add mysql db creation to trusty playbook vars
1 parent 4ad4671 commit b837c66

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

playbooks/archivematica/vars-singlenode-1.7.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,15 @@ elasticsearch_thread_pools:
3131

3232
# percona role
3333

34+
mysql_databases:
35+
- name: "{{ archivematica_src_am_db_name }}"
36+
collation: "utf8_general_ci"
37+
encoding: "utf8"
38+
39+
mysql_users:
40+
- name: "{{ archivematica_src_am_db_user }}"
41+
pass: "{{ archivematica_src_am_db_password }}"
42+
priv: "{{ archivematica_src_am_db_name }}.*:ALL,GRANT"
43+
host: "{{ archivematica_src_am_db_host }}"
44+
3445
mysql_root_password: "ChangeMe!"

0 commit comments

Comments
 (0)