diff --git a/defaults/main.yml b/defaults/main.yml index b2cfce5..597e627 100644 --- a/defaults/main.yml +++ b/defaults/main.yml @@ -123,6 +123,7 @@ magento_mode: "default" # password: "" # host: "" # name: "" +# port: "" ## The database connections that contain the Magento data that Magento accesses ## See http://devdocs.magento.com/guides/v2.0/config-guide/config/config-php.html diff --git a/tasks/installation.yml b/tasks/installation.yml index a0266b6..5b41d62 100644 --- a/tasks/installation.yml +++ b/tasks/installation.yml @@ -170,7 +170,7 @@ - name: "Check if Magento database exists" shell: cmd: | - mysql --user="{{ magento_config_db.username }}" --password="{{ magento_config_db.password }}" --database="{{ magento_config_db.name }}" --host="{{ magento_config_db.host }}" <