From 910f6976dca2a9662bf29448ffc7173e599206c1 Mon Sep 17 00:00:00 2001 From: Olaf Meeuwissen Date: Thu, 17 Aug 2017 11:49:13 +0900 Subject: [PATCH] Tweak debootstrap options This forces signature checking of Release files and prevents symlinks for `/{bin,sbin,lib}` to `/usr`. --- bootstrap.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/bootstrap.sh b/bootstrap.sh index 16b7eec..d5b5ca1 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -12,7 +12,10 @@ apt-get install debootstrap -q -y rootfs=/devuan/rootfs -debootstrap --variant=minbase jessie $rootfs +debootstrap \ + --force-check-gpg \ + --no-merged-usr \ + --variant=minbase jessie $rootfs bindir=usr/local/bin cp -a scripts/* $rootfs/$bindir