2018-03-07 18:52:40 -05:00
|
|
|
|
|
|
|
: ${DEBIAN_MIRROR:="https://deb.debian.org/debian"}
|
2021-02-12 09:32:22 -05:00
|
|
|
: ${DEBIAN_RELEASE:="bullseye"}
|
2018-03-07 18:52:40 -05:00
|
|
|
|
2019-04-02 15:38:19 -04:00
|
|
|
BASE_PACKAGES="iproute2 less xz-utils sudo dbus libpam-systemd openssh-client packagekit-gtk3-module libcanberra-gtk3-module libpulse0 fonts-roboto-hinted bash-completion"
|
2018-03-07 18:52:40 -05:00
|
|
|
|
2020-07-10 12:15:13 -04:00
|
|
|
BASE_PRE_INSTALL_MODULES="utility-library configure-locale create-user set-hostname no-install-recommends write-dpkg-cfg-nodocs write-apt-preferences write-apt-sources"
|
2018-03-07 18:52:40 -05:00
|
|
|
|
2020-07-10 12:15:13 -04:00
|
|
|
BASE_POST_INSTALL_MODULES="loginctl-enable-linger configure-systemd install-configure-host0 install-launch-script setup-theme-symlinks apt-cacher-ng add-xsettings-schema delete-dpkg-cfg-nodocs"
|
2018-03-07 18:52:40 -05:00
|
|
|
|
|
|
|
trap "exit 1" TERM
|
|
|
|
export TOP_PID=$$
|
|
|
|
|
|
|
|
fatal() {
|
|
|
|
>&2 echo "Fatal: ${1}"
|
|
|
|
kill -s TERM $TOP_PID
|
|
|
|
}
|
|
|
|
|
|
|
|
info() {
|
|
|
|
printf "[+] ${1}\n"
|
|
|
|
}
|