1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- url --url http://ip:port/cblr/links/centos-x86_64/
- install
- text
- selinux --disabled
- firewall --disabled
- skipx
- ignoredisk --only-use=sda
- keyboard us
- lang en_US
- network --bootproto=dhcp --device=link --onboot=on --activate
- rootpw --iscrypted ks_password
- services --enabled="chronyd"
- timezone --utc ks_timezone
- bootloader --location=mbr --boot-drive=sda
- clearpart --all --initlabel --drives=sda
- zerombr
- partition /boot/efi --asprimary --fstype=vfat --label EFI --size=200
- partition /boot --asprimary --fstype=ext4 --label BOOT --size=500
- partition / --asprimary --fstype=ext4 --label ROOT --size=4096 --grow
- reboot
- %packages
- @core
- net-tools
- %end
- %post --log=/root/ks-post.log
- yum groupinstall "Infiniband Support" -y
- yum install infiniband-diags perftest qperf -y
- %end
|