Add a script to debootstrap Devuan
This commit is contained in:
parent
c2f90a4caf
commit
052b61e1ed
|
|
@ -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
|
||||
Loading…
Reference in New Issue