Skip to content

Commit

Permalink
Fixed Issue #8
Browse files Browse the repository at this point in the history
  • Loading branch information
malavolti committed Nov 12, 2019
1 parent 7883a9e commit 4d148ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion roles/idp/tasks/idp-configure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
mode: "0600"

- name: "Store in the 'shib_db' ansible variable the result of the check on the existance of the 'shibboleth' database"
command: mysql -u root -s -N -e "SELECT SCHEMA_NAME FROM INFORMATION_SCHEMA.SCHEMATA WHERE SCHEMA_NAME='shibboleth'"
command: mysql -h {{ idp_config['shibboleth_db_host'] }} -u shibboleth -p{{ idp_config['shibboleth_db_password'] }} -s -N -e "SELECT SCHEMA_NAME FROM INFORMATION_SCHEMA.SCHEMATA WHERE SCHEMA_NAME='shibboleth'"
register: shib_db
changed_when: false

Expand Down

0 comments on commit 4d148ce

Please sign in to comment.