Version bumb to 2.2.1 and added migrate command

made the changes to get 2.2.1 running plus added a migrate command to
the entrypoint. documented it in the readme.
This commit is contained in:
Marvin Steadfast
2017-01-31 16:33:19 +01:00
parent 80a3379a76
commit fb020c3be6
6 changed files with 29 additions and 8 deletions

View File

@ -61,8 +61,6 @@
port="{{ database_port }}"
when: (database_driver == 'pdo_mysql') or
(database_driver == 'pdo_pgsql')
tags:
- firstrun
- name: add mariadb db
mysql_db:
@ -104,7 +102,7 @@
login_user="{{ database_root_user_postgres }}"
login_password="{{ database_root_password_postgres }}"
notify: run install
when: (database_driver == 'pdo_pgsql') and
when: (database_driver == 'pdo_pgsql') and
(populate_database == True)
tags:
- firstrun