mirror of
https://pagure.io/fedora-kickstarts.git
synced 2025-12-10 00:50:32 +08:00
Compare commits
23 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c103f22fd4 | ||
|
|
3dc09d2323 | ||
|
|
c8791014ed | ||
|
|
e875df9b80 | ||
|
|
4ecca276e8 | ||
|
|
2b5fc6b2c6 | ||
|
|
f34fc22406 | ||
|
|
c6c1a42cb0 | ||
|
|
b2f4ab4a3a | ||
|
|
41dcd0a870 | ||
|
|
53529140a4 | ||
|
|
9ea1fad3c8 | ||
|
|
a1b275fd30 | ||
|
|
2a6485f10a | ||
|
|
97db030843 | ||
|
|
c1a0eda13b | ||
|
|
5220de9de2 | ||
|
|
a2dbd83cf6 | ||
|
|
40d13b5b31 | ||
|
|
3d7df42f17 | ||
|
|
5ee5afac70 | ||
|
|
4cfcb783a1 | ||
|
|
a085b22db0 |
@@ -6,8 +6,7 @@
|
||||
fedora-release-designsuite
|
||||
|
||||
# Provides backup application
|
||||
deja-dup
|
||||
#deja-dup-nautilus
|
||||
#deja-dup
|
||||
|
||||
# Add extra gnome applications
|
||||
#gnome-books
|
||||
|
||||
@@ -1,6 +0,0 @@
|
||||
%include fedora-disk-base.ks
|
||||
%include fedora-minimal-common.ks
|
||||
|
||||
services --enabled=sshd,NetworkManager,chronyd,initial-setup
|
||||
|
||||
autopart --type=plain --noswap
|
||||
@@ -1,88 +0,0 @@
|
||||
# This is the kickstart for Fedora IoT disk images.
|
||||
|
||||
text # don't use cmdline -- https://github.com/rhinstaller/anaconda/issues/931
|
||||
lang en_US.UTF-8
|
||||
keyboard us
|
||||
timezone --utc Etc/UTC
|
||||
|
||||
selinux --enforcing
|
||||
rootpw --lock --iscrypted locked
|
||||
|
||||
bootloader --timeout=1 --append="modprobe.blacklist=vc4"
|
||||
|
||||
network --bootproto=dhcp --device=link --activate --onboot=on
|
||||
services --enabled=NetworkManager,sshd
|
||||
|
||||
zerombr
|
||||
clearpart --all --initlabel --disklabel=msdos
|
||||
autopart --nohome --noswap --type=plain
|
||||
|
||||
# Equivalent of %include fedora-repo.ks
|
||||
# Pull from the ostree repo that was created during the compose
|
||||
ostreesetup --nogpg --osname=fedora-iot --remote=fedora-iot --url=https://kojipkgs.fedoraproject.org/compose/iot/repo/ --ref=fedora/rawhide/${basearch}/iot
|
||||
|
||||
reboot
|
||||
|
||||
%post --erroronfail
|
||||
|
||||
# Find the architecture we are on
|
||||
arch=$(uname -m)
|
||||
# Setup Raspberry Pi firmware
|
||||
if [[ $arch == "aarch64" ]]; then
|
||||
cp -P /usr/share/uboot/rpi_arm64/u-boot.bin /boot/efi/rpi-u-boot.bin
|
||||
fi
|
||||
|
||||
# Set the origin to the "main ref", distinct from /updates/ which is where bodhi writes.
|
||||
# We want consumers of this image to track the two week releases.
|
||||
ostree admin set-origin --index 0 fedora-iot https://dl.fedoraproject.org/iot/repo/ "fedora/rawhide/${arch}/iot"
|
||||
|
||||
# Make sure the ref we're supposedly sitting on (according
|
||||
# to the updated origin) exists.
|
||||
ostree refs "fedora-iot:fedora/rawhide/${arch}/iot" --create "fedora-iot:fedora/rawhide/${arch}/iot"
|
||||
|
||||
# Remove the old ref so that the commit eventually gets cleaned up.
|
||||
ostree refs "fedora-iot:fedora/rawhide/${arch}/iot" --delete
|
||||
|
||||
# delete/add the remote with new options to enable gpg verification
|
||||
# and to point them at the cdn url
|
||||
ostree remote delete fedora-iot
|
||||
ostree remote add --set=gpg-verify=true --set=gpgkeypath=/etc/pki/rpm-gpg/ --set=contenturl=mirrorlist=https://ostree.fedoraproject.org/iot/mirrorlist fedora-iot 'https://ostree.fedoraproject.org/iot'
|
||||
|
||||
# We're getting a stray console= from somewhere, work around it
|
||||
rpm-ostree kargs --delete=console=tty0
|
||||
|
||||
# older versions of livecd-tools do not follow "rootpw --lock" line above
|
||||
# https://bugzilla.redhat.com/show_bug.cgi?id=964299
|
||||
passwd -l root
|
||||
|
||||
# Work around https://bugzilla.redhat.com/show_bug.cgi?id=1193590
|
||||
cp /etc/skel/.bash* /var/roothome
|
||||
|
||||
# Remove any persistent NIC rules generated by udev
|
||||
rm -vf /etc/udev/rules.d/*persistent-net*.rules
|
||||
|
||||
echo "Removing random-seed so it's not the same in every image."
|
||||
rm -f /var/lib/systemd/random-seed
|
||||
|
||||
echo "Packages within this iot image:"
|
||||
echo "-----------------------------------------------------------------------"
|
||||
rpm -qa --qf '%{size}\t%{name}-%{version}-%{release}.%{arch}\n' |sort -rn
|
||||
echo "-----------------------------------------------------------------------"
|
||||
# Note that running rpm recreates the rpm db files which aren't needed/wanted
|
||||
rm -f /var/lib/rpm/__db*
|
||||
|
||||
echo "Zeroing out empty space."
|
||||
# This forces the filesystem to reclaim space from deleted files
|
||||
dd bs=1M if=/dev/zero of=/var/tmp/zeros || :
|
||||
rm -f /var/tmp/zeros
|
||||
echo "(Don't worry -- that out-of-space error was expected.)"
|
||||
|
||||
rm -f /etc/NetworkManager/system-connections/*.nmconnection
|
||||
|
||||
# Anaconda is writing an /etc/resolv.conf from the install environment.
|
||||
# The system should start out with an empty file, otherwise cloud-init
|
||||
# will try to use this information and may error:
|
||||
# https://bugs.launchpad.net/cloud-init/+bug/1670052
|
||||
truncate -s 0 /etc/resolv.conf
|
||||
|
||||
%end
|
||||
@@ -22,6 +22,9 @@ fedora-release-kde
|
||||
-tracker-miners
|
||||
-tracker
|
||||
|
||||
# Not needed on desktops. See: https://pagure.io/fedora-kde/SIG/issue/566
|
||||
-mariadb-server-utils
|
||||
|
||||
### The KDE-Desktop
|
||||
|
||||
# fedora-specific packages
|
||||
|
||||
@@ -13,6 +13,8 @@
|
||||
|
||||
# Maintainer: Christian Dersch <lupinix@fedoraproject.org>
|
||||
# https://fedoraproject.org/wiki/User:Lupinix
|
||||
# Co-Maintainer: JT Pennington <q5sys@fedoraproject.org>
|
||||
# https://fedoraproject.org/wiki/User:q5sys
|
||||
|
||||
%include fedora-live-kde-base.ks
|
||||
%include fedora-live-minimization.ks
|
||||
@@ -33,7 +35,7 @@ part / --size 16000
|
||||
astrometry
|
||||
astrometry-tycho2
|
||||
cdsclient
|
||||
fpack
|
||||
cfitsio-utils
|
||||
psfex
|
||||
scamp
|
||||
sextractor
|
||||
|
||||
@@ -9,4 +9,4 @@
|
||||
%include fedora-comp-neuro-common.ks
|
||||
%include fedora-neuro-gnome-common.ks
|
||||
|
||||
part / --size 10240
|
||||
part / --size 11264
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
%include fedora-live-kde.ks
|
||||
|
||||
# DVD size partition
|
||||
part / --size 10240 --fstype ext4
|
||||
part / --size 11264 --fstype ext4
|
||||
|
||||
#enable threaded irqs
|
||||
bootloader --append="threadirqs"
|
||||
|
||||
@@ -10,6 +10,9 @@
|
||||
%include fedora-live-minimization.ks
|
||||
%include fedora-lxde-common.ks
|
||||
|
||||
# increate the disk size for compose
|
||||
part / --size 6144
|
||||
|
||||
%post
|
||||
# LXDE and LXDM configuration
|
||||
|
||||
|
||||
30
fedora-live-miraclewm.ks
Normal file
30
fedora-live-miraclewm.ks
Normal file
@@ -0,0 +1,30 @@
|
||||
# fedora-livecd-miraclewm.ks
|
||||
#
|
||||
# Description:
|
||||
# - Fedora Live Spin with the tiling window manager Miracle
|
||||
#
|
||||
# Maintainer(s):
|
||||
# - Matthew Kosarek <mattkae@fedoraproject.org>
|
||||
# - Neal Gompa <ngompa@fedoraproject.org>
|
||||
|
||||
%include fedora-live-base.ks
|
||||
%include fedora-live-minimization.ks
|
||||
%include fedora-miraclewm-common.ks
|
||||
|
||||
%packages
|
||||
# To be able to show installation instructions on background
|
||||
nwg-wrapper
|
||||
%end
|
||||
|
||||
%post
|
||||
# create /etc/sysconfig/desktop (needed for installation)
|
||||
cat > /etc/sysconfig/desktop <<EOF
|
||||
PREFERRED=/usr/bin/miraclewm
|
||||
DISPLAYMANAGER=/bin/sddm
|
||||
EOF
|
||||
|
||||
# set livesys session type
|
||||
sed -i 's/^livesys_session=.*/livesys_session="miraclewm"/' /etc/sysconfig/livesys
|
||||
|
||||
%end
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
%include fedora-live-minimization.ks
|
||||
%include fedora-scientific-common.ks
|
||||
|
||||
part / --size 17000
|
||||
part / --size 18000
|
||||
|
||||
%post
|
||||
|
||||
|
||||
@@ -61,7 +61,6 @@ gnome-keyring-pam
|
||||
-binwalk
|
||||
-bkhive
|
||||
-bonesi
|
||||
-bro
|
||||
-cmospwd
|
||||
-dnstop
|
||||
-etherape
|
||||
@@ -79,7 +78,6 @@ gnome-keyring-pam
|
||||
-pdfcrack
|
||||
-proxychains
|
||||
-pyrit
|
||||
-raddump
|
||||
-rkhunter
|
||||
-safecopy
|
||||
-samdump2
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
#
|
||||
#include snippets/packagekit-cached-metadata.ks
|
||||
|
||||
part / --size 8192
|
||||
part / --size 8576
|
||||
|
||||
%packages
|
||||
gnome-initial-setup
|
||||
|
||||
@@ -1,23 +0,0 @@
|
||||
%packages
|
||||
dnf5
|
||||
-@standard
|
||||
-initial-setup-gui
|
||||
-generic-release*
|
||||
-glibc-all-langpacks
|
||||
# recommended by iproute, we don't want it in minimal
|
||||
-iproute-tc
|
||||
# recommended by gnutls, we don't want it in minimal
|
||||
-trousers
|
||||
glibc-langpack-en
|
||||
iw
|
||||
NetworkManager-wifi
|
||||
%end
|
||||
|
||||
%post
|
||||
|
||||
# setup systemd to boot to the right runlevel
|
||||
echo -n "Setting default runlevel to multiuser text mode"
|
||||
systemctl set-default multi-user.target
|
||||
echo .
|
||||
|
||||
%end
|
||||
15
fedora-miraclewm-common.ks
Normal file
15
fedora-miraclewm-common.ks
Normal file
@@ -0,0 +1,15 @@
|
||||
# fedora-livecd-miraclewm.ks
|
||||
#
|
||||
# Description:
|
||||
# - Fedora Live Spin with the tiling window manager Miracle
|
||||
#
|
||||
# Maintainer(s):
|
||||
# - Matthew Kosarek <mattkae@fedoraproject.org>
|
||||
# - Neal Gompa <ngompa@fedoraproject.org>
|
||||
|
||||
%packages
|
||||
fedora-release-miraclewm
|
||||
@^miraclewm-desktop-environment
|
||||
@firefox
|
||||
initial-setup-gui-wayland-miraclewm
|
||||
%end
|
||||
@@ -32,6 +32,7 @@ wget2-wget
|
||||
-python3.11
|
||||
-python3.12
|
||||
-pypy
|
||||
-pypy3.9
|
||||
|
||||
# Remove LaTeX, see https://bugzilla.redhat.com/show_bug.cgi?id=1862450
|
||||
# and https://bugzilla.redhat.com/show_bug.cgi?id=1902354
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
# Exactly one of the following should be uncommented
|
||||
|
||||
# For the master branch the following should be uncommented
|
||||
%include fedora-repo-rawhide.ks
|
||||
# %include fedora-repo-rawhide.ks
|
||||
|
||||
# For non-master branches the following should be uncommented
|
||||
# %include fedora-repo-not-rawhide.ks
|
||||
%include fedora-repo-not-rawhide.ks
|
||||
|
||||
@@ -162,6 +162,10 @@ if [[ $arch == "aarch64" ]] || [[ $arch == "armv7l" ]]; then
|
||||
sed -i -e 's|console=tty0||g' /boot/loader/entries/*conf
|
||||
fi
|
||||
|
||||
# Trigger lvm-devices-import.path and .service to create
|
||||
# a new /etc/lvm/devices/system.devices for the root VG.
|
||||
rm -f /etc/lvm/devices/system.devices
|
||||
touch /etc/lvm/devices/auto-import-rootvg
|
||||
|
||||
# Remove machine-id on pre generated images
|
||||
rm -f /etc/machine-id
|
||||
|
||||
@@ -12,4 +12,7 @@
|
||||
-gfs2-utils
|
||||
-reiserfs-utils
|
||||
|
||||
# Exclude extra unwanted packages
|
||||
-python3-botocore
|
||||
|
||||
%end
|
||||
|
||||
@@ -35,24 +35,24 @@ fas = [ "chimosky", "aperezbios", ]
|
||||
maintainers = [ "Chihurumnaya Ibiam", "Alex Perez" ]
|
||||
|
||||
[labs.astronomy_kde.x86_64]
|
||||
fas = [ "lupinix" ]
|
||||
maintainers = [ "Christian Dersch" ]
|
||||
fas = [ "lupinix", "q5sys" ]
|
||||
maintainers = [ "Christian Dersch", "JT Pennington" ]
|
||||
|
||||
[labs.security.x86_64]
|
||||
fas = [ "fab", "jsimon", "q5sys"]
|
||||
maintainers = [ "Fabian Affolter", "Joerg Simon", "JT Pennington" ]
|
||||
|
||||
[labs.comp_neuro.x86_64]
|
||||
fas = [ "bt0dotninja", "dan1mal", "ankursinha", "neuro-sig" ]
|
||||
maintainers = [ "Alberto Rodriguez Sanchez", "Danny Lee", "Ankur Sinha", "NeuroFedora SIG" ]
|
||||
fas = [ "bt0dotninja", "dan1mal", "ankursinha" ]
|
||||
maintainers = [ "Alberto Rodriguez Sanchez", "Danny Lee", "Ankur Sinha" ]
|
||||
|
||||
[labs.design_suite.x86_64]
|
||||
fas = [ "luya" ]
|
||||
maintainers = [ "Luya Tshimbalanga" ]
|
||||
|
||||
[labs.games.x86_64]
|
||||
fas = [ "dagostinelli", "richardanaya" ]
|
||||
maintainers = [ "Darryl T. Agostinelli", "Richard Anaya" ]
|
||||
fas = [ "ngompa", "q5sys" ]
|
||||
maintainers = [ "Neal Gompa", "JT Pennington" ]
|
||||
|
||||
[labs.jam_kde.x86_64]
|
||||
fas = [ "q5sys" ]
|
||||
@@ -90,6 +90,10 @@ maintainers = [ "Joshua Strobl" ]
|
||||
fas = [ "alebastr", "jkonecny", "anthr76", "fale" ]
|
||||
maintainers = [ "Aleksei Bavshin", "Jiří Konečný", "Anthony Rabbito", "Fabio Alessandro Locati" ]
|
||||
|
||||
[spins.miraclewm.x86_64]
|
||||
fas = [ "mattkae", "ngompa" ]
|
||||
maintainers = [ "Matthew Kosarek", "Neal Gompa" ]
|
||||
|
||||
[silverblue.x86_64]
|
||||
fas = [ "siosm", "tpopela" ]
|
||||
maintainers = [ "Timothée Ravier", "Tomáš Popela" ]
|
||||
|
||||
Reference in New Issue
Block a user