From: Frank Brehm Date: Fri, 24 Jun 2022 12:41:13 +0000 (+0200) Subject: Adding templates/el-standard.ks X-Git-Tag: 2.6.2~1^2~8^2~43 X-Git-Url: https://git.uhu-banane.org/?a=commitdiff_plain;h=2d23c7d71574edd447e3ac5e1e3848062db4a350;p=pixelpark%2Fcreate-vmware-tpl.git Adding templates/el-standard.ks --- diff --git a/templates/el-standard.ks b/templates/el-standard.ks new file mode 100644 index 0000000..b63f508 --- /dev/null +++ b/templates/el-standard.ks @@ -0,0 +1,59 @@ +###################################################################################### +# Provisioning-Installation of {{ distro.description }} +###################################################################################### +# +# Standard Pixelpark Installation of {{ distro.name }} templates. +# + +# Firewall configuration +firewall --disabled + +# Use network installation from cobbler host +url --url="{{ distro.ks_repo_url }}" --noverifyssl + +sshpw --username=inst testtest --plaintext + +# Root install-password +rootpw --iscrypted ${ROOT_PWD_HASH} +# System authorization information +auth --useshadow --passalgo=sha512 +# Use text mode install +text +# System keyboard +keyboard de +# System language +lang en_US +# SELinux configuration +selinux --permissiv +# Do not configure the X Window System +skipx +# Installation logging level +logging --level=debug +# Reboot after installation +reboot +# System timezone +timezone Europe/Berlin + +########################################### +# Partitioning and Disk + +# System bootloader configuration +bootloader --location=mbr --append="net.ifnames=0 biosdevname=0" + +# Partition clearing information +clearpart --all --drive=sda + +# Disk partitioning information +part /boot --fstype ext4 --size=512 --ondisk=sda +part swap --size=${SWAP_SIZE_MB} --ondisk=sda +part pv.01 --size=1 --grow --ondisk=sda +volgroup vgroot pv.01 +logvol / --vgname=vgroot --name=root --size=6144 +logvol /home --vgname=vgroot --name=home --size=1024 +logvol /var --vgname=vgroot --name=var --size=4096 --grow +logvol /var/log --vgname=vgroot --name=log --size=2048 + +########################################## +# Repositories + +