forked from images/live-iso-gnome
40 lines
1.1 KiB
Bash
Executable File
40 lines
1.1 KiB
Bash
Executable File
#! /bin/bash
|
|
|
|
set -e
|
|
|
|
export DEBIAN_FRONTEND="noninteractive"
|
|
|
|
# Update APT Caches
|
|
|
|
apt-get update -y
|
|
apt-get install pika-sources -y
|
|
|
|
# Actions to do before package lists
|
|
apt-get install initramfs-tools adwaita-icon-theme amdgpu-drm --yes --option Dpkg::Options::="--force-confnew"
|
|
apt-get install desktop-file-utils --yes --option Dpkg::Options::="--force-confnew"
|
|
apt-get install kernel-pika --yes --option Dpkg::Options::="--force-confnew"
|
|
apt-get install booster-placeholder --yes --option Dpkg::Options::="--force-confnew"
|
|
|
|
# Upgrade system with new cache
|
|
|
|
apt-get full-upgrade --yes --option Dpkg::Options::="--force-confnew"
|
|
|
|
# Install Absolute Live Boot Basics
|
|
|
|
apt-get install --yes --option Dpkg::Options::="--force-confnew" --no-install-recommends \
|
|
live-boot \
|
|
systemd-sysv \
|
|
iwd \
|
|
curl openssh-client \
|
|
xserver-xorg-core \
|
|
xserver-xorg \
|
|
xinit xterm \
|
|
nano
|
|
|
|
# Run chroot steps
|
|
/chroot_scripts/1-baseos.sh
|
|
/chroot_scripts/2-install-live-lists.sh
|
|
/chroot_scripts/3-download-pool.sh
|
|
/chroot_scripts/4-uninstall-rem-lists.sh
|
|
/chroot_scripts/5-run-hooks.sh
|