mirror of
https://pagure.io/fedora-kickstarts.git
synced 2025-12-09 08:30:30 +08:00
Compare commits
16 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5ee03735d6 | ||
|
|
4f004227f3 | ||
|
|
d1d9de9a97 | ||
|
|
fa5c8ccf35 | ||
|
|
06ce4be308 | ||
|
|
9b0b39f7d6 | ||
|
|
24b73a6270 | ||
|
|
174b5721ec | ||
|
|
ab1363a4bc | ||
|
|
f84b197d1e | ||
|
|
2611d60fd0 | ||
|
|
200f6930a6 | ||
|
|
ab7ee6e6db | ||
|
|
6527f89bde | ||
|
|
86e0dc18cf | ||
|
|
d64a181fa3 |
@@ -43,7 +43,6 @@ initial-setup-gui
|
||||
|
||||
# make sure all the locales are available for inital0-setup and anaconda to work
|
||||
glibc-all-langpacks
|
||||
|
||||
%end
|
||||
|
||||
%post
|
||||
@@ -72,13 +71,8 @@ systemctl mask tmp.mount
|
||||
|
||||
dnf -y remove dracut-config-generic
|
||||
|
||||
# Disable network service here, as doing it in the services line
|
||||
# fails due to RHBZ #1369794
|
||||
/sbin/chkconfig network off
|
||||
|
||||
# Remove machine-id on pre generated images
|
||||
rm -f /etc/machine-id
|
||||
touch /etc/machine-id
|
||||
|
||||
%end
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
%include fedora-arm-xbase.ks
|
||||
%include fedora-mate-common.ks
|
||||
|
||||
part / --size=6100 --fstype ext4
|
||||
part / --size=7168 --fstype ext4
|
||||
|
||||
%post
|
||||
|
||||
|
||||
@@ -4,6 +4,7 @@
|
||||
@input-methods
|
||||
@multimedia
|
||||
@printing
|
||||
epiphany
|
||||
%end
|
||||
|
||||
%post
|
||||
|
||||
@@ -14,6 +14,6 @@
|
||||
parole
|
||||
|
||||
# extra backgrounds
|
||||
f29-backgrounds-extras-gnome
|
||||
f30-backgrounds-extras-gnome
|
||||
|
||||
%end
|
||||
|
||||
@@ -137,7 +137,7 @@ echo "Removing firewalld."
|
||||
# not work when package was installed by Anaconda instead of command line.
|
||||
# Also -- check if this is still even needed with new anaconda -- disabled
|
||||
# firewall should _not_ pull in this package.
|
||||
# yum -C -y remove "firewalld*" --setopt="clean_requirements_on_remove=1"
|
||||
# dnf -C -y remove "firewalld*" --setopt="clean_requirements_on_remove=1"
|
||||
dnf -C -y erase "firewalld*"
|
||||
|
||||
# Another one needed at install time but not after that, and it pulls
|
||||
|
||||
@@ -112,12 +112,12 @@ rpm -e linux-firmware
|
||||
# Remove firewalld; was supposed to be optional in F18+, but is required to
|
||||
# be present for install/image building.
|
||||
echo "Removing firewalld."
|
||||
yum -C -y remove firewalld --setopt="clean_requirements_on_remove=1"
|
||||
dnf -C -y remove firewalld --setopt="clean_requirements_on_remove=1"
|
||||
|
||||
# Another one needed at install time but not after that, and it pulls
|
||||
# in some unneeded deps (like, newt and slang)
|
||||
echo "Removing authconfig."
|
||||
yum -C -y remove authconfig --setopt="clean_requirements_on_remove=1"
|
||||
dnf -C -y remove authconfig --setopt="clean_requirements_on_remove=1"
|
||||
|
||||
echo -n "Getty fixes"
|
||||
# although we want console output going to the serial console, we don't
|
||||
@@ -176,10 +176,10 @@ echo "RUN_FIRSTBOOT=NO" > /etc/sysconfig/firstboot
|
||||
echo "Removing random-seed so it's not the same in every image."
|
||||
rm -f /var/lib/systemd/random-seed
|
||||
|
||||
echo "Cleaning old yum repodata."
|
||||
yum history new
|
||||
yum clean all
|
||||
truncate -c -s 0 /var/log/yum.log
|
||||
echo "Cleaning old dnf repodata."
|
||||
dnf history new
|
||||
dnf clean all
|
||||
truncate -c -s 0 /var/log/dnf.log
|
||||
|
||||
echo "Import RPM GPG key"
|
||||
releasever=$(rpm -q --qf '%{version}\n' fedora-release)
|
||||
@@ -204,7 +204,7 @@ dd if=/usr/share/syslinux/mbr.bin of=/dev/vda
|
||||
echo "Fixing SELinux contexts."
|
||||
touch /var/log/cron
|
||||
touch /var/log/boot.log
|
||||
mkdir -p /var/cache/yum
|
||||
mkdir -p /var/cache/dnf
|
||||
/usr/sbin/fixfiles -R -a restore
|
||||
|
||||
echo "Zeroing out empty space."
|
||||
|
||||
@@ -103,12 +103,12 @@ rpm -e linux-firmware
|
||||
# Remove firewalld; was supposed to be optional in F18+, but is required to
|
||||
# be present for install/image building.
|
||||
echo "Removing firewalld."
|
||||
yum -C -y remove "firewalld*" --setopt="clean_requirements_on_remove=1"
|
||||
dnf -C -y remove "firewalld*" --setopt="clean_requirements_on_remove=1"
|
||||
|
||||
# Another one needed at install time but not after that, and it pulls
|
||||
# in some unneeded deps (like, newt and slang)
|
||||
echo "Removing authconfig."
|
||||
yum -C -y remove authconfig --setopt="clean_requirements_on_remove=1"
|
||||
dnf -C -y remove authconfig --setopt="clean_requirements_on_remove=1"
|
||||
|
||||
echo -n "Getty fixes"
|
||||
# although we want console output going to the serial console, we don't
|
||||
@@ -167,10 +167,10 @@ echo "RUN_FIRSTBOOT=NO" > /etc/sysconfig/firstboot
|
||||
echo "Removing random-seed so it's not the same in every image."
|
||||
rm -f /var/lib/systemd/random-seed
|
||||
|
||||
echo "Cleaning old yum repodata."
|
||||
yum history new
|
||||
yum clean all
|
||||
truncate -c -s 0 /var/log/yum.log
|
||||
echo "Cleaning old dnf repodata."
|
||||
dnf history new
|
||||
dnf clean all
|
||||
truncate -c -s 0 /var/log/dnf.log
|
||||
|
||||
echo "Import RPM GPG key"
|
||||
releasever=$(rpm -q --qf '%{version}\n' fedora-release)
|
||||
@@ -196,7 +196,7 @@ dd if=/usr/share/syslinux/mbr.bin of=/dev/vda
|
||||
echo "Fixing SELinux contexts."
|
||||
touch /var/log/cron
|
||||
touch /var/log/boot.log
|
||||
mkdir -p /var/cache/yum
|
||||
mkdir -p /var/cache/dnf
|
||||
chattr -i /boot/extlinux/ldlinux.sys
|
||||
/usr/sbin/fixfiles -R -a restore
|
||||
chattr +i /boot/extlinux/ldlinux.sys
|
||||
|
||||
@@ -12,7 +12,7 @@ vim-minimal
|
||||
dnf
|
||||
dnf-yum # https://fedorahosted.org/fesco/ticket/1312#comment:29
|
||||
sssd-client
|
||||
|
||||
sudo
|
||||
%end
|
||||
|
||||
%post --erroronfail --log=/root/anaconda-post.log
|
||||
|
||||
@@ -8,12 +8,15 @@ autopart --noswap
|
||||
# install the default groups for the server environment since installing the environment is not working
|
||||
@server-product
|
||||
@standard
|
||||
@core
|
||||
@headless-management
|
||||
@hardware-support
|
||||
@networkmanager-submodules
|
||||
|
||||
@container-management
|
||||
@domain-client
|
||||
@guest-agents
|
||||
@server-hardware-support
|
||||
-initial-setup-gui
|
||||
-generic-release*
|
||||
%end
|
||||
|
||||
@@ -65,6 +65,7 @@ glibc-all-langpacks
|
||||
|
||||
# no longer in @core since 2018-10, but needed for livesys script
|
||||
initscripts
|
||||
chkconfig
|
||||
%end
|
||||
|
||||
%post
|
||||
|
||||
@@ -6,3 +6,6 @@
|
||||
|
||||
%include fedora-live-workstation.ks
|
||||
%include fedora-python-classroom-gnome-common.ks
|
||||
|
||||
# https://bugzilla.redhat.com/show_bug.cgi?id=1695796
|
||||
part / --size 7168
|
||||
|
||||
@@ -17,6 +17,8 @@ wget
|
||||
-python33
|
||||
-python34
|
||||
-python35
|
||||
-python36
|
||||
-python38
|
||||
-pypy
|
||||
|
||||
%end
|
||||
|
||||
@@ -7,7 +7,6 @@
|
||||
%include fedora-python-classroom-common.ks
|
||||
|
||||
%packages
|
||||
ninja-ide
|
||||
emacs
|
||||
python3-matplotlib-tk
|
||||
python3-pillow-tk
|
||||
|
||||
@@ -28,14 +28,6 @@ armadillo-devel
|
||||
ddd
|
||||
valgrind
|
||||
|
||||
#python 2 tools/libraries not included from the groups
|
||||
python2-tools
|
||||
python-ipython
|
||||
python-ipython-console
|
||||
python-ipython-notebook
|
||||
sympy
|
||||
python-networkx
|
||||
python-pandas
|
||||
|
||||
#python 3 and tools/libraries not included from the groups
|
||||
python3
|
||||
@@ -51,8 +43,6 @@ python3-networkx
|
||||
python3-pandas
|
||||
|
||||
# matplotlib backends
|
||||
python-matplotlib-qt4
|
||||
python-matplotlib-tk
|
||||
python3-matplotlib-qt4
|
||||
python3-matplotlib-tk
|
||||
|
||||
@@ -101,7 +91,6 @@ openmpi
|
||||
openmpi-devel
|
||||
valgrind-openmpi
|
||||
libgomp
|
||||
python-pp
|
||||
mpi4py-openmpi
|
||||
python3-mpi4py-openmpi
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
# Maintainer(s):
|
||||
# - Fabian Affolter <fab at fedoraproject.org>
|
||||
|
||||
%include ../fedora-livecd-xfce.ks
|
||||
%include ../fedora-live-xfce.ks
|
||||
|
||||
lang de_DE
|
||||
keyboard sg-latin1-nodeadkeys
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
# Maintainer(s):
|
||||
# - Fabian Affolter <fab at fedoraproject.org>
|
||||
|
||||
%include ../fedora-livecd-xfce.ks
|
||||
%include ../fedora-live-xfce.ks
|
||||
|
||||
lang de_DE.UTF-8
|
||||
keyboard de-latin1-nodeadkeys
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
# Maintainer(s):
|
||||
# - Matthieu Saulnier <fantom@fedoraproject.org>
|
||||
|
||||
%include ../fedora-livecd-xfce.ks
|
||||
%include ../fedora-live-xfce.ks
|
||||
|
||||
lang fr_FR.UTF-8
|
||||
keyboard fr-latin9
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
# Maintainer(s):
|
||||
# - Jeroen van Meeuwen <kanarip a fedoraunity.org>
|
||||
|
||||
%include ../fedora-livecd-xfce.ks
|
||||
%include ../fedora-live-xfce.ks
|
||||
|
||||
lang nl_NL
|
||||
keyboard us
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
# Maintainer(s):
|
||||
# - Pedro Silva <pedrofsilva a netcabo.pt>
|
||||
|
||||
%include ../fedora-livecd-xfce.ks
|
||||
%include ../fedora-live-xfce.ks
|
||||
|
||||
lang pt_PT.UTF-8
|
||||
keyboard pt-latin1
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
# Maintainer(s):
|
||||
# - Sergey Mihailov <sergey.mihailov at gmail.com>
|
||||
|
||||
%include ../fedora-livecd-xfce.ks
|
||||
%include ../fedora-live-xfce.ks
|
||||
|
||||
lang ru_RU.UTF-8
|
||||
keyboard ru
|
||||
|
||||
Reference in New Issue
Block a user