From 651ed7d1d56d8ae47549d51e3b1144b919fb1e85 Mon Sep 17 00:00:00 2001 From: Olaf Meeuwissen Date: Sat, 26 Aug 2017 22:29:11 +0900 Subject: [PATCH] Work around a documented bug in Devuan jessie's debootstrap See http://bugs.devuan.org//cgi/bugreport.cgi?bug=115 --- bootstrap.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/bootstrap.sh b/bootstrap.sh index 198f802..3533d5b 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -10,6 +10,11 @@ export DEBIAN_FRONTEND apt-get update apt-get install debootstrap -q -y +# See http://bugs.devuan.org//cgi/bugreport.cgi?bug=115 +for suite in stable testing unstable; do + ln -fs ceres /usr/share/debootstrap/scripts/$suite +done + suite=$1 rootfs=$2