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',
},
},
'needs': {
'needs': [
'action:chmod_gitea',
'download:/usr/local/bin/gitea',
'file:/etc/systemd/system/gitea.service',
'file:/etc/gitea/app.ini',
},
],
},
},
},

View file

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