Fixed bug with entrypoint

The entrypoint didnt triggered the install script if there is no
sqlitedb.
This commit is contained in:
Marvin Steadfast
2016-04-22 14:20:04 +02:00
parent 052f98f7ba
commit 7b46fdd314

View File

@ -31,6 +31,7 @@
- name: notify install for sqlite
debug:
msg='notify installation script if sqlite db does not exist'
changed_when: true
notify: run install
when: (database_driver == 'pdo_sqlite') and
(wallabag_sqlite_db.stat.exists == False)