Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (3)
Don't modify readonly variables
· 341d4c52
Joerg Jaspert
authored
Apr 08, 2018
341d4c52
Only declare LOCK_STOP once
· ded7de58
Joerg Jaspert
authored
Apr 08, 2018
ded7de58
Merge branch 'master' into deploy
· 933ebf32
Joerg Jaspert
authored
Apr 08, 2018
* master: Only declare LOCK_STOP once Don't modify readonly variables
933ebf32
Show whitespace changes
Inline
Side-by-side
config/common/variables
View file @
933ebf32
...
...
@@ -38,6 +38,9 @@ declare -r HOSTNAME=$(hostname -s)
# Various lockfiles used by multiple cron scripts
declare
-r
LOCK_DAILY
=
"
${
lockdir
}
/daily.lock"
declare
-r
LOCK_UNCHECKED
=
"
${
lockdir
}
/unchecked.lock"
# If this file exists we exit immediately after the currently running
# function is done
declare
-r
LOCK_STOP
=
"
${
lockdir
}
/archive.stop"
# By default, add no timestamps to stage logs
...
...
config/debian/dinstall.variables
View file @
933ebf32
...
...
@@ -30,10 +30,6 @@ LOCK_ACCEPTED="$lockdir/unchecked.lock"
# from our point of view
LOCK_BRITNEY
=
"
$lockdir
/britney.lock"
# If this file exists we exit immediately after the currently running
# function is done
LOCK_STOP
=
"
$lockdir
/archive.stop"
# Lock buildd updates
LOCK_BUILDD
=
"
$lockdir
/buildd.lock"
...
...