From 7b46fdd314584597ca51413fcb22049adeb5798a Mon Sep 17 00:00:00 2001 From: Marvin Steadfast Date: Fri, 22 Apr 2016 14:20:04 +0200 Subject: [PATCH] Fixed bug with entrypoint The entrypoint didnt triggered the install script if there is no sqlitedb. --- root/etc/ansible/entrypoint.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/root/etc/ansible/entrypoint.yml b/root/etc/ansible/entrypoint.yml index d11e8d5..ae6a4d1 100644 --- a/root/etc/ansible/entrypoint.yml +++ b/root/etc/ansible/entrypoint.yml @@ -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)