Add missing default values
This commit is contained in:
parent
51f29b315f
commit
48764314f9
1 changed files with 4 additions and 4 deletions
|
@ -14,12 +14,12 @@ DRY_RUN=${DRY_RUN:-true}
|
|||
TLS_EXPIRED_MAX_SEC=${TLS_EXPIRED_MAX_SEC:-1210000}
|
||||
# How many seconds to wait to connect to an instance already in error in the
|
||||
# past
|
||||
INSTANCE_LAST_CHANCE_TIMEOUT=30
|
||||
INSTANCE_LAST_CHANCE_TIMEOUT=${INSTANCE_LAST_CHANCE_TIMEOUT:-30}
|
||||
# How old media attachments have to be before getting removed
|
||||
MEDIA_REMOVE_DAYS=7
|
||||
CARDS_REMOVE_DAYS=15
|
||||
MEDIA_REMOVE_DAYS=${MEDIA_REMOVE_DAYS:-7}
|
||||
CARDS_REMOVE_DAYS=${CARDS_REMOVE_DAYS:-15}
|
||||
# How old unreferenced statuses have to be before getting removed
|
||||
STATUSES_REMOVE_DAYS=30
|
||||
STATUSES_REMOVE_DAYS=${STATUSES_REMOVE_DAYS:-30}
|
||||
# Path to logs files
|
||||
CULL_LOG=/tmp/$(mktemp tootpaste_XXX)
|
||||
TLS_EXPIRED_LOG=/tmp/$(mktemp tootpaste_XXX)
|
||||
|
|
Loading…
Reference in a new issue