diff --git a/bundles/nextcloud/items.py b/bundles/nextcloud/items.py index ea6d47c..f2fe313 100644 --- a/bundles/nextcloud/items.py +++ b/bundles/nextcloud/items.py @@ -80,15 +80,6 @@ files = { 'directory:/etc/nextcloud', ], }, - '/opt/nextcloud/rescan': { - 'owner': 'www-data', - 'group': 'www-data', - 'mode': '550', - 'needs': [ - 'directory:/opt/nextcloud', - 'action:extract_nextcloud', - ], - }, } # SETUP @@ -141,3 +132,15 @@ actions['nextcloud_add_missing_inidces'] = { f'action:extract_nextcloud', ], } + +# RESCAN + +files['/opt/nextcloud/rescan'] = { + 'owner': 'www-data', + 'group': 'www-data', + 'mode': '550', + 'needs': [ + 'directory:/opt/nextcloud', + 'action:extract_nextcloud', + ], +}