cabc1a34d9
Some checks failed
Build Canary amd64-v3 ISO / build (push) Failing after 55s
Build Canary NVIDIA amd64-v3 ISO / build (push) Failing after 52s
Build Nest amd64-v3 ISO / build (push) Failing after 51s
Release Canary amd64-v3 ISO / build (push) Has been cancelled
Release Nest NVIDIA amd64-v3 ISO / build (push) Has been cancelled
Release Nest amd64-v3 ISO / build (push) Has been cancelled
Release Canary NVIDIA amd64-v3 ISO / build (push) Has been cancelled
Build Nest NVIDIA amd64-v3 ISO / build (push) Has been cancelled
23 lines
381 B
Bash
Executable File
23 lines
381 B
Bash
Executable File
#! /bin/bash
|
|
|
|
set -e
|
|
|
|
exit 1
|
|
|
|
export DEBIAN_FRONTEND="noninteractive"
|
|
|
|
apt-get install -y --no-install-recommends --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 \
|
|
iptables
|