1
0
forked from brl/citadel
citadel/realmfs-builder/common.inc
David McKinney 9cda830f1f Update base realmfs from buster to bullseye
- Base realmfs is now based on Debian bullseye
- Replaced buster link in docs/duck/realmfs.duck with bullseye
- Added neovim as the default vim in the base realmfs packages
2021-03-20 20:27:15 -04:00

22 lines
763 B
PHP

: ${DEBIAN_MIRROR:="https://deb.debian.org/debian"}
: ${DEBIAN_RELEASE:="bullseye"}
BASE_PACKAGES="iproute2 less xz-utils sudo dbus libpam-systemd openssh-client packagekit-gtk3-module libcanberra-gtk3-module libpulse0 fonts-roboto-hinted bash-completion"
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"
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"
trap "exit 1" TERM
export TOP_PID=$$
fatal() {
>&2 echo "Fatal: ${1}"
kill -s TERM $TOP_PID
}
info() {
printf "[+] ${1}\n"
}