This commit is contained in:
mwiegand 2021-06-20 01:56:37 +02:00
parent 0a9f3493b9
commit c7c5d3f316
2 changed files with 16 additions and 14 deletions

View file

@ -51,12 +51,12 @@ defaults = {
'WantedBy': 'multi-user.target', 'WantedBy': 'multi-user.target',
}, },
}, },
'needs': { 'needs': [
'action:chmod_gitea', 'action:chmod_gitea',
'download:/usr/local/bin/gitea', 'download:/usr/local/bin/gitea',
'file:/etc/systemd/system/gitea.service', 'file:/etc/systemd/system/gitea.service',
'file:/etc/gitea/app.ini', 'file:/etc/gitea/app.ini',
}, ],
}, },
}, },
}, },

View file

@ -1,15 +1,17 @@
defaults = { defaults = {
'archive': { 'archive': {
'/var/lib/nextcloud/': { 'paths': {
'exclude': [ '/var/lib/nextcloud': {
'^appdata_', 'exclude': [
'^updater-', '^appdata_',
'^nextcloud\.log', '^updater-',
'^updater\.log', '^nextcloud\.log',
'^[^/]+/cache', '^updater\.log',
'^[^/]+/files_versions', '^[^/]+/cache',
'^[^/]+/files_trashbin', '^[^/]+/files_versions',
], '^[^/]+/files_trashbin',
} ],
},
},
}, },
} }