19 lines
369 B
Bash
Executable File
19 lines
369 B
Bash
Executable File
#!/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
|
|
|
|
rootfs=/devuan/rootfs
|
|
|
|
debootstrap --variant=minbase jessie $rootfs
|
|
|
|
find $rootfs/var/cache/apt/ -type f -delete
|
|
find $rootfs/var/lib/apt/ -type f -delete
|