Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (2)
Do not overwrite existing list files, do not break if c-s dies
· 6ce5dbe8
Joerg Jaspert
authored
Jun 23, 2018
6ce5dbe8
Merge branch 'master' into deploy
· 434e11dc
Joerg Jaspert
authored
Jun 23, 2018
* master: Do not overwrite existing list files, do not break if c-s dies
434e11dc
Show whitespace changes
Inline
Side-by-side
config/debian/pointrelease
View file @
434e11dc
...
...
@@ -128,12 +128,20 @@ confirm
log
"Preparing"
pg_timestamp pre_
${
suite
}
_
${
newrev
}
if
[[
!
-f
${
pusuite
}
.list
]]
;
then
dak control-suite
-l
${
pusuite
}
>
${
pusuite
}
.list &
fi
if
[[
!
-f
${
suite
}
.list
]]
;
then
dak control-suite
-l
${
suite
}
>
${
suite
}
.list &
fi
if
[[
${
suitename
}
!=
jessie
]]
;
then
if
[[
!
-f
${
suite
}
-debug
.list
]]
;
then
dak control-suite
-l
${
suite
}
-debug
>
${
suite
}
-debug
.list &
fi
if
[[
!
-f
${
pusuite
}
-debug
.list
]]
;
then
dak control-suite
-l
${
pusuite
}
-debug
>
${
pusuite
}
-debug
.list &
fi
fi
wait
if
[[
-n
${
skiplist
}
]]
;
then
...
...
@@ -159,7 +167,12 @@ if [[ -n ${skiplist} ]]; then
fi
log
"Merging
${
pusuite
}
into
${
suite
}
"
dak control-suite
--add
${
suite
}
<
${
pusuite
}
.list
if
dak control-suite
--add
${
suite
}
<
${
pusuite
}
.list
;
then
log
"Done"
else
log
"Please check problem and hit enter when i can continue"
read
fi
if
[[
${
suitename
}
!=
jessie
]]
;
then
dak control-suite
--add
${
suite
}
-debug
<
${
pusuite
}
-debug
.list
fi
...
...