Re: Re: Re: Re: centos8 kickstart

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

Replies to Re: Re: Re: Re: centos8 kickstart rss

Title Name Language When
Re: Re: Re: Re: Re: centos8 kickstart Chocolate Crane text 2 Years ago.

Reply to "Re: Re: Re: Re: centos8 kickstart"

Here you can reply to the paste above