summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnsgar Burchardt <ansgar@debian.org>2016-09-08 15:36:18 (GMT)
committerAnsgar Burchardt <ansgar@debian.org>2016-09-08 15:36:18 (GMT)
commit3d118f688e8bf28f28ca5f454834b28bf31436a2 (patch)
treeda90ccfa00e6ff001da164e361ffcdbe25f6b032
parent542d399677d21ab7148c6723590fcf19acf900a2 (diff)
downloaddebootstrap-3d118f688e8bf28f28ca5f454834b28bf31436a2.zip
debootstrap-3d118f688e8bf28f28ca5f454834b28bf31436a2.tar.gz
debootstrap-3d118f688e8bf28f28ca5f454834b28bf31436a2.tar.bz2
Use CODENAME to identify suites which support merged-/usr
Unlike suite names (stable, testing, ...), the codename from the Release file does not change meaning over time. So the codename should be used for any hacks that should only happen for some releases.
-rw-r--r--scripts/sid3
1 files changed, 1 insertions, 2 deletions
diff --git a/scripts/sid b/scripts/sid
index 5866569..428c676 100644
--- a/scripts/sid
+++ b/scripts/sid
@@ -41,9 +41,8 @@ work_out_debs () {
}
first_stage_install () {
- case $SUITE in
+ case "$CODENAME" in
etch|etch-m68k|jessie|lenny|squeeze|wheezy) ;;
- oldstable|stable) ;;
*) setup_merged_usr ;;
esac