1a8591fdd5
Rename them to rhel-*, update urls to reference BaseOS and AppStream. rhel-livemedia will boot into a live GNOME desktop. Resolves: rhbz#1650295
33 lines
1001 B
Plaintext
33 lines
1001 B
Plaintext
# Fedora Atomic PXE Live creation kickstart
|
|
# Suitable for use with livemedia-creator --no-virt
|
|
|
|
# Settings for unattended installation:
|
|
lang en_US.UTF-8
|
|
keyboard us
|
|
timezone America/New_York
|
|
clearpart --all --initlabel
|
|
rootpw --plaintext atomic
|
|
|
|
part / --fstype="ext4" --size=6000
|
|
|
|
shutdown
|
|
|
|
# Replace OSTREE-REPO with the url to an ostree repo
|
|
# Replace OSTREE-REFERENCE with an ostree reference to pull
|
|
ostreesetup --nogpg --osname=fedora-atomic --remote=fedora-atomic --url=OSTREE-REPO --ref=OSTREE-REFERENCE
|
|
|
|
services --disabled=cloud-init,cloud-init-local,cloud-final,cloud-config,docker-storage-setup
|
|
|
|
# We copy content of separate /boot partition to root part when building live squashfs image,
|
|
# and we don't want systemd to try to mount it when pxe booting
|
|
%post
|
|
cat /dev/null > /etc/fstab
|
|
%end
|
|
|
|
%post --erroronfail
|
|
rm -f /etc/ostree/remotes.d/fedora-atomic.conf
|
|
|
|
# Replace OSTREE-REPO with the url to an ostree repo
|
|
ostree remote add --set=gpg-verify=false fedora-atomic 'OSTREE-REPO'
|
|
%end
|