forked from brl/citadel
David McKinney
9cda830f1f
- 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
22 lines
763 B
PHP
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"
|
|
}
|