set retention_obligation to default (#1950)

Co-authored-by: Daniel Hansson <github@hanssonit.se>
This commit is contained in:
szaimen 2021-05-11 20:59:46 +02:00 committed by GitHub
parent 04ec101f4b
commit 418ded5d01
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -524,11 +524,11 @@ nextcloud_occ config:system:set remember_login_cookie_lifetime --value="1800"
# Set logrotate (max 10 MB)
nextcloud_occ config:system:set log_rotate_size --value="10485760"
# Set trashbin retention obligation (save it in trashbin for 6 months or delete when space is needed)
nextcloud_occ config:system:set trashbin_retention_obligation --value="auto, 180"
# Set trashbin retention obligation (save it in trashbin for 60 days or delete when space is needed)
nextcloud_occ config:system:set trashbin_retention_obligation --value="auto, 60"
# Set versions retention obligation (save versions for 12 months or delete when space is needed)
nextcloud_occ config:system:set versions_retention_obligation --value="auto, 365"
# Set versions retention obligation (save versions for 180 days or delete when space is needed)
nextcloud_occ config:system:set versions_retention_obligation --value="auto, 180"
# Remove simple signup
nextcloud_occ config:system:set simpleSignUpLink.shown --type=bool --value=false