Compare commits

..

No commits in common. "fc9c404450048131fcf05ae16e5f465c8addeb85" and "d2e368d77dea49721251b9f8ba2280f2ff4a69a3" have entirely different histories.

2 changed files with 1 additions and 18 deletions

View file

@ -15,6 +15,7 @@ base_system() {
} }
packages=( packages=(
"gnome-core"
"bash-completion" "bash-completion"
"sudo" "sudo"
"ssh" "ssh"
@ -22,9 +23,6 @@ packages=(
) )
post_install() { post_install() {
log "Installing gnome"
chroot "$imageroot" apt install gnome-core -y
log "Configuring gdm and GNOME" log "Configuring gdm and GNOME"
mkdir -p "$imageroot/etc/skel/.config" mkdir -p "$imageroot/etc/skel/.config"

View file

@ -1,15 +0,0 @@
image_type="fedora"
name="FedoraWorkstation"
imgver="41-$(date '+%Y-%m-%d')"
zram="y"
pre_install=()
base_system()
{
fetch_base_system "$imageroot" 41 1.4 Workstation
}
packages=()
post_install=()