Re: Re: centos8 kickstart

From Beige Flamingo, 2 Years ago, written in Plain Text, viewed 248 times. This paste is a reply to Re: centos8 kickstart from Chartreuse Lion - view diff
URL https://paste.steamr.com/view/cd4b5665 Embed
Download Paste or View Raw
  1. #version=RHEL8
  2. # Use graphical install
  3. graphical
  4.  
  5. repo --name="Minimal" --baseurl=file:///run/install/sources/mount-0000-cdrom/Minimal
  6.  
  7. %packages
  8. @^minimal-environment
  9. @standard
  10. yum-utils
  11.  
  12. %end
  13.  
  14. # Keyboard layouts
  15. keyboard --xlayouts='us'
  16. # System language
  17. lang en_US.UTF-8
  18.  
  19. # Network information
  20. network  --bootproto=dhcp --device=ens160 --ipv6=auto --activate
  21. network  --hostname=rocky
  22.  
  23. # Use CDROM installation media
  24. cdrom
  25.  
  26. # Run the Setup Agent on first boot
  27. firstboot --disable
  28. reboot
  29. selinux --disabled
  30.  
  31. zerombr
  32. clearpart --all --initlabel --drives=nvme0n1
  33. ignoredisk --only-use=nvme0n1
  34. # Partition clearing information
  35. clearpart --none --initlabel
  36. # Disk partitioning information
  37. part /boot --fstype="xfs" --ondisk=nvme0n1 --size=512
  38. part / --fstype="xfs" --ondisk=nvme0n1 --size=7679
  39.  
  40. # System timezone
  41. timezone America/Edmonton --isUtc --nontp
  42.  
  43. # Root password
  44. rootpw --iscrypted $6$ne1H.s2XHWktKM23$nNss8xVLKQMi9ftZJKeSKqdc1VsdC0d4R3R.wI6jU16VXan3I2I0lM0DPUBobqRVK2Dmbb6j4KC9H/quLcWUY.
  45.  
  46. %post
  47. yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo
  48. dnf -y install docker-ce docker-ce-cli containerd.io
  49. dnf -y install https://zfsonlinux.org/epel/zfs-release.el8_4.noarch.rpm
  50. dnf -y install epel-release
  51. dnf -y install kernel-devel zfs
  52. %end
  53.  
  54. %addon com_redhat_kdump --disable --reserve-mb='auto'
  55.  
  56. %end
  57.  
  58. %anaconda
  59. pwpolicy root --minlen=6 --minquality=1 --notstrict --nochanges --notempty
  60. pwpolicy user --minlen=6 --minquality=1 --notstrict --nochanges --emptyok
  61. pwpolicy luks --minlen=6 --minquality=1 --notstrict --nochanges --notempty
  62. %end
  63.  

Replies to Re: Re: centos8 kickstart rss

Title Name Language When
Re: Re: Re: centos8 kickstart Sharp Cat text 2 Years ago.

Reply to "Re: Re: centos8 kickstart"

Here you can reply to the paste above