From e4084956a22539432715cc0f17d407d4af61bc67 Mon Sep 17 00:00:00 2001 From: mwiegand Date: Wed, 23 Feb 2022 18:11:12 +0100 Subject: [PATCH] no json: error prone --- bundles/nextcloud/items.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundles/nextcloud/items.py b/bundles/nextcloud/items.py index 8aa5fb9..ea6d47c 100644 --- a/bundles/nextcloud/items.py +++ b/bundles/nextcloud/items.py @@ -106,7 +106,7 @@ actions['install_nextcloud'] = { admin_pass=node.metadata.get('nextcloud/admin_pass'), data_dir='/var/lib/nextcloud', ), - 'unless': repo.libs.nextcloud.occ('status', output='json') + ' | jq -r .installed | grep -q "^true$"', + 'unless': repo.libs.nextcloud.occ('status') + ' | grep -q "installed: true"', 'needs': [ 'directory:/etc/nextcloud', 'directory:/opt/nextcloud',