temp_rocky8.cfg 935 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. #version=RHEL8
  2. # instllation method
  3. cdrom
  4. # SELinux configuration
  5. selinux --disabled
  6. # Firewall configuration
  7. firewall --disabled
  8. # text install
  9. text
  10. # Do not configure the X Window System
  11. skipx
  12. # Keyboard layouts
  13. keyboard us
  14. # System language
  15. lang ks_language
  16. # Network information
  17. network --bootproto=dhcp --device=link --onboot=on --activate
  18. # Root password
  19. rootpw --iscrypted ks_password
  20. # System services
  21. services --enabled="chronyd"
  22. # System timezone
  23. timezone --utc ks_timezone
  24. # System bootloader configuration
  25. bootloader --location=mbr
  26. # Tell it to blow away the master boot record on the hard drive
  27. zerombr
  28. # Tell it to do a dumb move and blow away all partitions
  29. clearpart --all --initlabel
  30. # Auto partitiong
  31. autopart
  32. # Reboot after installation
  33. reboot
  34. %packages
  35. @core
  36. net-tools
  37. %end
  38. %post --log=/root/ks-post.log
  39. yum groupinstall "Infiniband Support" -y
  40. yum install infiniband-diags perftest qperf -y
  41. %end