Re: centos8 kickstart

From Chartreuse Lion, 2 Years ago, written in Plain Text, viewed 240 times. This paste is a reply to centos8 kickstart from Obese Hamerkop - view diff
URL https://paste.steamr.com/view/e871c717 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.  
  29. zerombr
  30. clearpart --all --initlabel --drives=nvme0n1
  31. ignoredisk --only-use=nvme0n1
  32. # Partition clearing information
  33. clearpart --none --initlabel
  34. # Disk partitioning information
  35. part /boot --fstype="xfs" --ondisk=nvme0n1 --size=512
  36. part / --fstype="xfs" --ondisk=nvme0n1 --size=7679
  37.  
  38. # System timezone
  39. timezone America/Edmonton --isUtc --nontp
  40.  
  41. # Root password
  42. rootpw --iscrypted $6$ne1H.s2XHWktKM23$nNss8xVLKQMi9ftZJKeSKqdc1VsdC0d4R3R.wI6jU16VXan3I2I0lM0DPUBobqRVK2Dmbb6j4KC9H/quLcWUY.
  43.  
  44. %post
  45. yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo
  46. dnf -y install docker-ce docker-ce-cli containerd.io
  47. dnf -y install https://zfsonlinux.org/epel/zfs-release.el8_4.noarch.rpm
  48. dnf -y install epel-release
  49. dnf -y install kernel-devel zfs
  50. %end
  51.  
  52. %addon com_redhat_kdump --disable --reserve-mb='auto'
  53.  
  54. %end
  55.  
  56. %anaconda
  57. pwpolicy root --minlen=6 --minquality=1 --notstrict --nochanges --notempty
  58. pwpolicy user --minlen=6 --minquality=1 --notstrict --nochanges --emptyok
  59. pwpolicy luks --minlen=6 --minquality=1 --notstrict --nochanges --notempty
  60. %end
  61.  

Replies to Re: centos8 kickstart rss

Title Name Language When
Re: Re: centos8 kickstart Beige Flamingo text 2 Years ago.

Reply to "Re: centos8 kickstart"

Here you can reply to the paste above