Skip to content

Commit

Permalink
Add column_case_sensitive option
Browse files Browse the repository at this point in the history
  • Loading branch information
mrvanes committed Aug 9, 2024
1 parent d40b010 commit 54d2644
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions roles/docker_sbs/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ sbs_db_cert_path: "{{sbs_cert_dir}}/db_ca.crt"
sbs_db_name: "sbs"
sbs_db_admin_user: "root"
sbs_db_admin_password: "changethispassword"
sbs_db_user_column_case_sensitive: false

sbs_db_user: "sbs"
sbs_dbbackup_user: "sbs_backupper"
Expand Down
1 change: 1 addition & 0 deletions roles/docker_sbs/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@
priv: '{{ sbs_db_name }}.*:{{ item.priv }}'
ca_cert: "/etc/ssl/vm.scz-vm.net.crt"
check_hostname: false
column_case_sensitive: "{{ sbs_db_user_column_case_sensitive }}"
with_items:
- user: "{{ sbs_db_user }}"
passwd: "{{ sbs_db_password }}"
Expand Down
1 change: 1 addition & 0 deletions roles/sbs/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ sbs_db_cert_path: "{{sbs_cert_dir}}/db_ca.crt"
sbs_db_name: "sbs"
sbs_db_admin_user: "root"
sbs_db_admin_password: "changethispassword"
sbs_db_user_column_case_sensitive: false

sbs_db_user: "sbs"
sbs_dbbackup_user: "sbs_backupper"
Expand Down
1 change: 1 addition & 0 deletions roles/sbs/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@
password: '{{ item.passwd }}'
priv: '{{ sbs_db_name }}.*:{{ item.priv }}'
ca_cert: "{{sbs_db_cert_path}}"
column_case_sensitive: "{{ sbs_db_user_column_case_sensitive }}"
with_items:
- user: "{{ sbs_db_user }}"
passwd: "{{ sbs_db_password }}"
Expand Down

0 comments on commit 54d2644

Please sign in to comment.