From 052b61e1ed72cf8453f9ec2eb43e8144e8b3ea1b Mon Sep 17 00:00:00 2001 From: Olaf Meeuwissen Date: Wed, 9 Aug 2017 21:19:58 +0900 Subject: [PATCH] Add a script to debootstrap Devuan --- bootstrap.sh | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100755 bootstrap.sh diff --git a/bootstrap.sh b/bootstrap.sh new file mode 100755 index 0000000..03dbd45 --- /dev/null +++ b/bootstrap.sh @@ -0,0 +1,13 @@ +#!/bin/sh +# bootstrap.sh -- a Devuan base image +# Copyright (C) 2017 Olaf Meeuwissen +# +# License: GPL-3.0+ + +DEBIAN_FRONTEND=noninteractive +export DEBIAN_FRONTEND + +apt-get update +apt-get install debootstrap -q -y + +debootstrap --variant=minbase jessie /devuan/rootfs