forked from images/live-iso-gnome
20 lines
334 B
Bash
20 lines
334 B
Bash
|
#! /bin/bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
export DEBIAN_FRONTEND="noninteractive"
|
||
|
|
||
|
apt-get install -y --option Dpkg::Options::="--force-confnew" \
|
||
|
debootstrap \
|
||
|
squashfs-tools \
|
||
|
xorriso \
|
||
|
isolinux \
|
||
|
syslinux-efi \
|
||
|
grub-pc-bin \
|
||
|
grub-efi-amd64-bin \
|
||
|
grub-efi-ia32-bin \
|
||
|
mtools \
|
||
|
dosfstools \
|
||
|
rsync \
|
||
|
podman
|