mirror of
https://pagure.io/fedora-kickstarts.git
synced 2025-12-09 00:20:31 +08:00
Compare commits
29 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
84cba7aaa0 | ||
|
|
434aec0dd3 | ||
|
|
d0d81076bb | ||
|
|
5468763219 | ||
|
|
965fb1adab | ||
|
|
7f436214bc | ||
|
|
8d66af166c | ||
|
|
6f3661e3a5 | ||
|
|
5d987e82b3 | ||
|
|
2de79eaadb | ||
|
|
aaaf21e930 | ||
|
|
73645f341e | ||
|
|
f626ce246d | ||
|
|
b41f84a72c | ||
|
|
dceca557c3 | ||
|
|
e0e0f1f7ee | ||
|
|
c4c8c7add1 | ||
|
|
1f1184c77c | ||
|
|
2ac5e77a03 | ||
|
|
c901db770b | ||
|
|
3d4d6ddc8d | ||
|
|
d37a1e4622 | ||
|
|
4fc84a77a2 | ||
|
|
9181574bcc | ||
|
|
c86a3d3f99 | ||
|
|
232e5174ce | ||
|
|
06fc035621 | ||
|
|
722a7889fa | ||
|
|
8df52454c6 |
@@ -9,7 +9,6 @@ selinux --permissive
|
|||||||
firewall --disabled
|
firewall --disabled
|
||||||
bootloader --timeout=1 --append="acpi=force"
|
bootloader --timeout=1 --append="acpi=force"
|
||||||
network --bootproto=dhcp --device=eth0 --onboot=on
|
network --bootproto=dhcp --device=eth0 --onboot=on
|
||||||
services --enabled=network
|
|
||||||
|
|
||||||
# Uncomment the next line
|
# Uncomment the next line
|
||||||
# to make the root password be thincrust
|
# to make the root password be thincrust
|
||||||
@@ -95,5 +94,9 @@ generic-logos
|
|||||||
#
|
#
|
||||||
%post
|
%post
|
||||||
|
|
||||||
|
# Enable network service here, as doing it in the services line
|
||||||
|
# fails due to RHBZ #1369794
|
||||||
|
/sbin/chkconfig network on
|
||||||
|
|
||||||
%end
|
%end
|
||||||
|
|
||||||
|
|||||||
@@ -7,14 +7,15 @@ firewall --enabled --service=mdns,ssh
|
|||||||
# configure extlinux bootloader
|
# configure extlinux bootloader
|
||||||
bootloader extlinux
|
bootloader extlinux
|
||||||
|
|
||||||
part /boot --size=512 --fstype ext4
|
part /boot/fw --size=30 --fstype vfat --asprimary
|
||||||
part swap --size=512 --fstype swap
|
part /boot --size=512 --fstype ext4 --asprimary
|
||||||
part / --size=3584 --fstype ext4
|
part swap --size=512 --fstype swap --asprimary
|
||||||
|
part / --size=3584 --fstype ext4 --asprimary
|
||||||
|
|
||||||
# make sure that initial-setup runs and lets us do all the configuration bits
|
# make sure that initial-setup runs and lets us do all the configuration bits
|
||||||
firstboot --reconfig
|
firstboot --reconfig
|
||||||
|
|
||||||
services --enabled=ssh,NetworkManager,avahi-daemon,rsyslog,chronyd,initial-setup --disabled=network
|
services --enabled=sshd,NetworkManager,avahi-daemon,rsyslog,chronyd,initial-setup
|
||||||
|
|
||||||
%include fedora-repo.ks
|
%include fedora-repo.ks
|
||||||
|
|
||||||
@@ -28,9 +29,10 @@ kernel
|
|||||||
dracut-config-generic
|
dracut-config-generic
|
||||||
# install tools needed to manage and boot arm systems
|
# install tools needed to manage and boot arm systems
|
||||||
@arm-tools
|
@arm-tools
|
||||||
|
rng-tools
|
||||||
chrony
|
chrony
|
||||||
extlinux-bootloader
|
extlinux-bootloader
|
||||||
|
bcm283x-firmware
|
||||||
initial-setup
|
initial-setup
|
||||||
initial-setup-gui
|
initial-setup-gui
|
||||||
#lets resize / on first boot
|
#lets resize / on first boot
|
||||||
@@ -39,13 +41,26 @@ initial-setup-gui
|
|||||||
# remove this in %post
|
# remove this in %post
|
||||||
dracut-config-generic
|
dracut-config-generic
|
||||||
|
|
||||||
|
|
||||||
# make sure all the locales are available for inital0-setup and anaconda to work
|
# make sure all the locales are available for inital0-setup and anaconda to work
|
||||||
glibc-all-langpacks
|
glibc-all-langpacks
|
||||||
|
|
||||||
|
# workaround for consequence of RHBZ #1324623: without this, with
|
||||||
|
# yum-based creation tools, compose fails due to conflict between
|
||||||
|
# libcrypt and libcrypt-nss. dnf does not seem to have the same
|
||||||
|
# issue, so this may be dropped when appliance-creator is ported
|
||||||
|
# to dnf.
|
||||||
|
libcrypt-nss
|
||||||
|
-libcrypt
|
||||||
%end
|
%end
|
||||||
|
|
||||||
%post
|
%post
|
||||||
|
|
||||||
|
# Setup Raspberry Pi firmware
|
||||||
|
cp -Pr /usr/share/bcm283x-firmware/* /boot/fw/
|
||||||
|
cp -P /usr/share/uboot/rpi_2/u-boot.bin /boot/fw/rpi2-u-boot.bin
|
||||||
|
cp -P /usr/share/uboot/rpi_3_32b/u-boot.bin /boot/fw/rpi3-u-boot.bin
|
||||||
|
sed -i '/vfat/ d' /etc/fstab
|
||||||
|
|
||||||
# work around for poor key import UI in PackageKit
|
# work around for poor key import UI in PackageKit
|
||||||
rm -f /var/lib/rpm/__db*
|
rm -f /var/lib/rpm/__db*
|
||||||
releasever=$(rpm -q --qf '%{version}\n' fedora-release)
|
releasever=$(rpm -q --qf '%{version}\n' fedora-release)
|
||||||
@@ -66,5 +81,13 @@ systemctl mask tmp.mount
|
|||||||
|
|
||||||
dnf -y remove dracut-config-generic
|
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
|
%end
|
||||||
|
|
||||||
|
|||||||
@@ -5,8 +5,5 @@
|
|||||||
part / --size=5632 --fstype ext4
|
part / --size=5632 --fstype ext4
|
||||||
|
|
||||||
%post
|
%post
|
||||||
echo -n "Enabling initial-setup gui mode on startup"
|
|
||||||
ln -s /usr/lib/systemd/system/initial-setup-graphical.service /etc/systemd/system/graphical.target.wants/initial-setup-graphical.service
|
|
||||||
echo .
|
|
||||||
|
|
||||||
%end
|
%end
|
||||||
|
|||||||
@@ -3,8 +3,5 @@
|
|||||||
%include fedora-lxde-packages.ks
|
%include fedora-lxde-packages.ks
|
||||||
|
|
||||||
%post
|
%post
|
||||||
echo -n "Enabling initial-setup gui mode on startup"
|
|
||||||
ln -s /usr/lib/systemd/system/initial-setup-graphical.service /etc/systemd/system/graphical.target.wants/initial-setup-graphical.service
|
|
||||||
echo .
|
|
||||||
|
|
||||||
%end
|
%end
|
||||||
|
|||||||
@@ -5,8 +5,5 @@
|
|||||||
part / --size=5500 --fstype ext4
|
part / --size=5500 --fstype ext4
|
||||||
|
|
||||||
%post
|
%post
|
||||||
echo -n "Enabling initial-setup gui mode on startup"
|
|
||||||
ln -s /usr/lib/systemd/system/initial-setup-graphical.service /etc/systemd/system/graphical.target.wants/initial-setup-graphical.service
|
|
||||||
echo .
|
|
||||||
|
|
||||||
%end
|
%end
|
||||||
|
|||||||
@@ -1,6 +1,5 @@
|
|||||||
%include fedora-arm-base.ks
|
%include fedora-arm-base.ks
|
||||||
|
|
||||||
part /boot --size=512 --fstype ext4
|
|
||||||
part swap --size=256 --fstype swap
|
part swap --size=256 --fstype swap
|
||||||
part / --size=1279 --fstype ext4
|
part / --size=1279 --fstype ext4
|
||||||
|
|
||||||
|
|||||||
@@ -3,8 +3,5 @@
|
|||||||
%include fedora-soas-packages.ks
|
%include fedora-soas-packages.ks
|
||||||
|
|
||||||
%post
|
%post
|
||||||
echo -n "Enabling initial-setup gui mode on startup"
|
|
||||||
ln -s /usr/lib/systemd/system/initial-setup-graphical.service /etc/systemd/system/graphical.target.wants/initial-setup-graphical.service
|
|
||||||
echo .
|
|
||||||
|
|
||||||
%end
|
%end
|
||||||
|
|||||||
@@ -10,3 +10,8 @@ part / --size=5500 --fstype ext4
|
|||||||
|
|
||||||
%end
|
%end
|
||||||
|
|
||||||
|
%post
|
||||||
|
# Most of the ARM X accelerated drivers need some level of CMA allocation
|
||||||
|
sed -i 's/\(append .*\)/\1 cma=256MB/' /boot/extlinux/extlinux.conf
|
||||||
|
|
||||||
|
%end
|
||||||
|
|||||||
@@ -6,3 +6,11 @@
|
|||||||
@printing
|
@printing
|
||||||
%end
|
%end
|
||||||
|
|
||||||
|
%post
|
||||||
|
# Most of the ARM X accelerated drivers need some level of CMA allocation
|
||||||
|
sed -i 's/\(append .*\)/\1 cma=192MB/' /boot/extlinux/extlinux.conf
|
||||||
|
|
||||||
|
# Explicitly set graphical.target as default as this is how initial-setup detects which version to run
|
||||||
|
ln -sf /lib/systemd/system/graphical.target /etc/systemd/system/default.target
|
||||||
|
|
||||||
|
%end
|
||||||
|
|||||||
@@ -5,8 +5,5 @@
|
|||||||
part / --size=4000 --fstype ext4
|
part / --size=4000 --fstype ext4
|
||||||
|
|
||||||
%post
|
%post
|
||||||
echo -n "Enabling initial-setup gui mode on startup"
|
|
||||||
ln -s /usr/lib/systemd/system/initial-setup-graphical.service /etc/systemd/system/graphical.target.wants/initial-setup-graphical.service
|
|
||||||
echo .
|
|
||||||
|
|
||||||
%end
|
%end
|
||||||
|
|||||||
@@ -18,11 +18,10 @@ user --name=none
|
|||||||
|
|
||||||
firewall --disabled
|
firewall --disabled
|
||||||
|
|
||||||
bootloader --timeout=1 --append="no_timer_check console=tty1 console=ttyS0,115200n8"
|
bootloader --timeout=1 --append="no_timer_check console=tty1 console=ttyS0,115200n8 net.ifnames=0"
|
||||||
|
|
||||||
network --bootproto=dhcp --device=link --activate --onboot=on
|
network --bootproto=dhcp --device=link --activate --onboot=on
|
||||||
services --disabled=network
|
services --enabled=sshd,cloud-init,cloud-init-local,cloud-config,cloud-final
|
||||||
services --enabled=sshd,rsyslog,cloud-init,cloud-init-local,cloud-config,cloud-final
|
|
||||||
|
|
||||||
zerombr
|
zerombr
|
||||||
clearpart --all
|
clearpart --all
|
||||||
@@ -33,14 +32,14 @@ volgroup atomicos pv.01
|
|||||||
logvol / --size=3000 --fstype="xfs" --name=root --vgname=atomicos
|
logvol / --size=3000 --fstype="xfs" --name=root --vgname=atomicos
|
||||||
|
|
||||||
# Equivalent of %include fedora-repo.ks
|
# Equivalent of %include fedora-repo.ks
|
||||||
ostreesetup --nogpg --osname=fedora-atomic --remote=fedora-atomic --url=https://kojipkgs.fedoraproject.org/compose/atomic/rawhide/ --ref=fedora-atomic/rawhide/x86_64/docker-host
|
ostreesetup --nogpg --osname=fedora-atomic --remote=fedora-atomic --url=https://kojipkgs.fedoraproject.org/compose/atomic/25/ --ref=fedora-atomic/25/x86_64/docker-host
|
||||||
|
|
||||||
reboot
|
reboot
|
||||||
|
|
||||||
%post --erroronfail
|
%post --erroronfail
|
||||||
# See https://github.com/projectatomic/rpm-ostree/issues/42
|
# See https://github.com/projectatomic/rpm-ostree/issues/42
|
||||||
ostree remote delete fedora-atomic
|
ostree remote delete fedora-atomic
|
||||||
ostree remote add --set=gpg-verify=false fedora-atomic 'https://dl.fedoraproject.org/pub/fedora/linux/atomic/rawhide/'
|
ostree remote add --set=gpg-verify=false fedora-atomic 'https://dl.fedoraproject.org/pub/fedora/linux/atomic/25/'
|
||||||
|
|
||||||
# older versions of livecd-tools do not follow "rootpw --lock" line above
|
# older versions of livecd-tools do not follow "rootpw --lock" line above
|
||||||
# https://bugzilla.redhat.com/show_bug.cgi?id=964299
|
# https://bugzilla.redhat.com/show_bug.cgi?id=964299
|
||||||
@@ -122,8 +121,15 @@ dd bs=1M if=/dev/zero of=/var/tmp/zeros || :
|
|||||||
rm -f /var/tmp/zeros
|
rm -f /var/tmp/zeros
|
||||||
echo "(Don't worry -- that out-of-space error was expected.)"
|
echo "(Don't worry -- that out-of-space error was expected.)"
|
||||||
|
|
||||||
|
# For trac ticket https://fedorahosted.org/cloud/ticket/128
|
||||||
|
rm -f /etc/sysconfig/network-scripts/ifcfg-ens3
|
||||||
|
|
||||||
echo "Adding Developer Mode GRUB2 menu item."
|
echo "Adding Developer Mode GRUB2 menu item."
|
||||||
/usr/libexec/atomic-devmode/bootentry add
|
/usr/libexec/atomic-devmode/bootentry add
|
||||||
|
|
||||||
|
# enable network service here, as doing it in the services line
|
||||||
|
# fails due to RHBZ #1369794
|
||||||
|
/sbin/chkconfig network off
|
||||||
|
|
||||||
%end
|
%end
|
||||||
|
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ network --bootproto=dhcp --device=link --activate
|
|||||||
part / --fstype="ext4" --size=6000
|
part / --fstype="ext4" --size=6000
|
||||||
part /boot --size=500 --fstype="ext4"
|
part /boot --size=500 --fstype="ext4"
|
||||||
shutdown
|
shutdown
|
||||||
services --disabled=docker-storage-setup,network
|
services --disabled=docker-storage-setup
|
||||||
services --enabled=NetworkManager,sshd,cloud-init,cloud-init-local,cloud-config,cloud-final
|
services --enabled=NetworkManager,sshd,cloud-init,cloud-init-local,cloud-config,cloud-final
|
||||||
|
|
||||||
ostreesetup --nogpg --osname=fedora-atomic --remote=fedora-atomic --url=http://kojipkgs.fedoraproject.org/mash/atomic/22/ --ref=fedora-atomic/f22/x86_64/docker-host
|
ostreesetup --nogpg --osname=fedora-atomic --remote=fedora-atomic --url=http://kojipkgs.fedoraproject.org/mash/atomic/22/ --ref=fedora-atomic/f22/x86_64/docker-host
|
||||||
@@ -28,4 +28,9 @@ userdel -r none
|
|||||||
# We copy content of separate /boot partition to root part when building live squashfs image,
|
# 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
|
# and we don't want systemd to try to mount it when pxe booting
|
||||||
cat /dev/null > /etc/fstab
|
cat /dev/null > /etc/fstab
|
||||||
|
|
||||||
|
# Disable network service here, as doing it in the services line
|
||||||
|
# fails due to RHBZ #1369794
|
||||||
|
/sbin/chkconfig network off
|
||||||
|
|
||||||
%end
|
%end
|
||||||
|
|||||||
@@ -32,9 +32,6 @@ dnf-yum
|
|||||||
# users setup. This can actually take a bit of time. Just fold it
|
# users setup. This can actually take a bit of time. Just fold it
|
||||||
# in to the base box disk image
|
# in to the base box disk image
|
||||||
rsync
|
rsync
|
||||||
# Add fuse-sshfs so that the vagrant-sshfs plugin won't have to
|
|
||||||
# install it on boot. https://github.com/dustymabe/vagrant-sshfs
|
|
||||||
fuse-sshfs
|
|
||||||
%end
|
%end
|
||||||
|
|
||||||
%post --erroronfail
|
%post --erroronfail
|
||||||
|
|||||||
@@ -39,11 +39,17 @@ firewall --disabled
|
|||||||
bootloader --timeout=1 --append="no_timer_check console=tty1 console=ttyS0,115200n8" --extlinux
|
bootloader --timeout=1 --append="no_timer_check console=tty1 console=ttyS0,115200n8" --extlinux
|
||||||
|
|
||||||
network --bootproto=dhcp --device=link --activate --onboot=on
|
network --bootproto=dhcp --device=link --activate --onboot=on
|
||||||
services --enabled=network,sshd,rsyslog,cloud-init,cloud-init-local,cloud-config,cloud-final
|
services --enabled=sshd,cloud-init,cloud-init-local,cloud-config,cloud-final
|
||||||
|
|
||||||
zerombr
|
zerombr
|
||||||
clearpart --all
|
clearpart --all
|
||||||
part / --fstype ext4 --grow
|
#
|
||||||
|
# We need to disable 64bit options here or extlinux won't work.
|
||||||
|
# See: http://www.syslinux.org/wiki/index.php/Filesystem#ext4
|
||||||
|
# and
|
||||||
|
# https://bugzilla.redhat.com/show_bug.cgi?id=1369934
|
||||||
|
#
|
||||||
|
part / --fstype ext4 --grow --mkfsoptions="-O ^64bit"
|
||||||
|
|
||||||
%include fedora-repo.ks
|
%include fedora-repo.ks
|
||||||
|
|
||||||
@@ -247,7 +253,6 @@ rm -f /var/lib/rpm/__db*
|
|||||||
# <https://bugzilla.redhat.com/show_bug.cgi?id=1015931>
|
# <https://bugzilla.redhat.com/show_bug.cgi?id=1015931>
|
||||||
dd if=/usr/share/syslinux/mbr.bin of=/dev/vda
|
dd if=/usr/share/syslinux/mbr.bin of=/dev/vda
|
||||||
|
|
||||||
|
|
||||||
# FIXME: is this still needed?
|
# FIXME: is this still needed?
|
||||||
echo "Fixing SELinux contexts."
|
echo "Fixing SELinux contexts."
|
||||||
touch /var/log/cron
|
touch /var/log/cron
|
||||||
@@ -265,5 +270,13 @@ echo "(Don't worry -- that out-of-space error was expected.)"
|
|||||||
# For trac ticket https://fedorahosted.org/cloud/ticket/128
|
# For trac ticket https://fedorahosted.org/cloud/ticket/128
|
||||||
rm -f /etc/sysconfig/network-scripts/ifcfg-ens3
|
rm -f /etc/sysconfig/network-scripts/ifcfg-ens3
|
||||||
|
|
||||||
|
# Enable network service here, as doing it in the services line
|
||||||
|
# fails due to RHBZ #1369794
|
||||||
|
/sbin/chkconfig network on
|
||||||
|
|
||||||
|
# Remove machine-id on pre generated images
|
||||||
|
rm -f /etc/machine-id
|
||||||
|
touch /etc/machine-id
|
||||||
|
|
||||||
%end
|
%end
|
||||||
|
|
||||||
|
|||||||
@@ -26,7 +26,7 @@ firewall --disabled
|
|||||||
bootloader --timeout=1 --append="no_timer_check console=tty1 console=ttyS0,115200n8" --extlinux
|
bootloader --timeout=1 --append="no_timer_check console=tty1 console=ttyS0,115200n8" --extlinux
|
||||||
|
|
||||||
network --bootproto=dhcp --device=eth0 --activate --onboot=on
|
network --bootproto=dhcp --device=eth0 --activate --onboot=on
|
||||||
services --enabled=network,sshd,rsyslog,cloud-init,cloud-init-local,cloud-config,cloud-final
|
services --enabled=sshd,cloud-init,cloud-init-local,cloud-config,cloud-final
|
||||||
|
|
||||||
zerombr
|
zerombr
|
||||||
clearpart --all
|
clearpart --all
|
||||||
@@ -219,5 +219,9 @@ dd bs=1M if=/dev/zero of=/var/tmp/zeros || :
|
|||||||
rm -f /var/tmp/zeros
|
rm -f /var/tmp/zeros
|
||||||
echo "(Don't worry -- that out-of-space error was expected.)"
|
echo "(Don't worry -- that out-of-space error was expected.)"
|
||||||
|
|
||||||
|
# Enable network service here, as doing it in the services line
|
||||||
|
# fails due to RHBZ #1369794
|
||||||
|
/sbin/chkconfig network on
|
||||||
|
|
||||||
%end
|
%end
|
||||||
|
|
||||||
|
|||||||
@@ -17,7 +17,7 @@ firewall --disabled
|
|||||||
bootloader --timeout=1 --append="no_timer_check console=tty1 console=ttyS0,115200n8" --extlinux
|
bootloader --timeout=1 --append="no_timer_check console=tty1 console=ttyS0,115200n8" --extlinux
|
||||||
|
|
||||||
network --bootproto=dhcp --device=eth0 --activate --onboot=on
|
network --bootproto=dhcp --device=eth0 --activate --onboot=on
|
||||||
services --enabled=network,sshd,rsyslog,cloud-init,cloud-init-local,cloud-config,cloud-final
|
services --enabled=sshd,cloud-init,cloud-init-local,cloud-config,cloud-final
|
||||||
|
|
||||||
zerombr
|
zerombr
|
||||||
clearpart --all
|
clearpart --all
|
||||||
@@ -211,5 +211,9 @@ dd bs=1M if=/dev/zero of=/var/tmp/zeros || :
|
|||||||
rm -f /var/tmp/zeros
|
rm -f /var/tmp/zeros
|
||||||
echo "(Don't worry -- that out-of-space error was expected.)"
|
echo "(Don't worry -- that out-of-space error was expected.)"
|
||||||
|
|
||||||
|
# Enable network service here, as doing it in the services line
|
||||||
|
# fails due to RHBZ #1369794
|
||||||
|
/sbin/chkconfig network on
|
||||||
|
|
||||||
%end
|
%end
|
||||||
|
|
||||||
|
|||||||
@@ -87,6 +87,8 @@ systemctl mask systemd-remount-fs.service dev-hugepages.mount sys-fs-fuse-connec
|
|||||||
umount /run
|
umount /run
|
||||||
systemd-tmpfiles --create --boot
|
systemd-tmpfiles --create --boot
|
||||||
|
|
||||||
|
# Remove machine-id on pre generated images
|
||||||
rm -f /etc/machine-id
|
rm -f /etc/machine-id
|
||||||
|
touch /etc/machine-id
|
||||||
|
|
||||||
%end
|
%end
|
||||||
|
|||||||
@@ -66,16 +66,27 @@ python3-ipython-notebook
|
|||||||
python3-sympy
|
python3-sympy
|
||||||
python3-networkx
|
python3-networkx
|
||||||
python3-pandas
|
python3-pandas
|
||||||
|
python3-pillow
|
||||||
|
python3-seaborn
|
||||||
|
python3-statsmodels
|
||||||
|
python3-scikit-learn
|
||||||
|
python3-scikit-image
|
||||||
# Python 3 astronomy
|
# Python 3 astronomy
|
||||||
|
astropy-tools
|
||||||
|
ginga
|
||||||
python3-astropy
|
python3-astropy
|
||||||
python3-astroML
|
python3-astroML
|
||||||
python3-astroML-addons
|
python3-astroML-addons
|
||||||
python3-astroquery
|
python3-astroquery
|
||||||
|
python3-astroscrappy
|
||||||
python3-APLpy
|
python3-APLpy
|
||||||
python3-ATpy
|
python3-ATpy
|
||||||
python3-ccdproc
|
python3-ccdproc
|
||||||
|
python3-fitsio
|
||||||
python3-gatspy
|
python3-gatspy
|
||||||
python3-photutils
|
python3-photutils
|
||||||
|
python3-pyvo
|
||||||
|
python3-reproject
|
||||||
python3-sep
|
python3-sep
|
||||||
|
|
||||||
# matplotlib backends
|
# matplotlib backends
|
||||||
|
|||||||
@@ -17,7 +17,7 @@ xconfig --startxonboot
|
|||||||
zerombr
|
zerombr
|
||||||
clearpart --all
|
clearpart --all
|
||||||
part / --size 5120 --fstype ext4
|
part / --size 5120 --fstype ext4
|
||||||
services --enabled=NetworkManager,ModemManager --disabled=network,sshd
|
services --enabled=NetworkManager,ModemManager --disabled=sshd
|
||||||
network --bootproto=dhcp --device=link --activate
|
network --bootproto=dhcp --device=link --activate
|
||||||
shutdown
|
shutdown
|
||||||
|
|
||||||
@@ -214,7 +214,9 @@ touch /.liveimg-configured
|
|||||||
|
|
||||||
# add static hostname to work around xauth bug
|
# add static hostname to work around xauth bug
|
||||||
# https://bugzilla.redhat.com/show_bug.cgi?id=679486
|
# https://bugzilla.redhat.com/show_bug.cgi?id=679486
|
||||||
echo "localhost" > /etc/hostname
|
# the hostname must be something else than 'localhost'
|
||||||
|
# https://bugzilla.redhat.com/show_bug.cgi?id=1370222
|
||||||
|
echo "localhost-live" > /etc/hostname
|
||||||
|
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
@@ -321,6 +323,14 @@ echo 'File created by kickstart. See systemd-update-done.service(8).' \
|
|||||||
# See bug 1317709
|
# See bug 1317709
|
||||||
rm -f /boot/*-rescue*
|
rm -f /boot/*-rescue*
|
||||||
|
|
||||||
|
# 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
|
%end
|
||||||
|
|
||||||
|
|
||||||
@@ -332,4 +342,5 @@ if [ "$(uname -i)" = "i386" -o "$(uname -i)" = "x86_64" ]; then
|
|||||||
if [ ! -d $LIVE_ROOT/LiveOS ]; then mkdir -p $LIVE_ROOT/LiveOS ; fi
|
if [ ! -d $LIVE_ROOT/LiveOS ]; then mkdir -p $LIVE_ROOT/LiveOS ; fi
|
||||||
cp /usr/bin/livecd-iso-to-disk $LIVE_ROOT/LiveOS
|
cp /usr/bin/livecd-iso-to-disk $LIVE_ROOT/LiveOS
|
||||||
fi
|
fi
|
||||||
|
|
||||||
%end
|
%end
|
||||||
|
|||||||
@@ -19,7 +19,7 @@ part / --size 14336
|
|||||||
# Added addons to address rhbz#1336879 from dnf
|
# Added addons to address rhbz#1336879 from dnf
|
||||||
gimp-data-extras
|
gimp-data-extras
|
||||||
gimp-dbp
|
gimp-dbp
|
||||||
gimp-dds
|
gimp-dds-plugin
|
||||||
gimp-elsamuko
|
gimp-elsamuko
|
||||||
gimp-fourier-plugin
|
gimp-fourier-plugin
|
||||||
gimp-gap
|
gimp-gap
|
||||||
|
|||||||
@@ -51,8 +51,8 @@ gl-117
|
|||||||
glob2
|
glob2
|
||||||
lincity-ng
|
lincity-ng
|
||||||
tmw
|
tmw
|
||||||
maniadrive
|
#maniadrive - maniadrive isn't building with php7
|
||||||
maniadrive-music
|
#maniadrive-music
|
||||||
megaglest
|
megaglest
|
||||||
nethack-vultures
|
nethack-vultures
|
||||||
netpanzer
|
netpanzer
|
||||||
|
|||||||
@@ -108,7 +108,6 @@ ladspa-vco-plugins
|
|||||||
#lv2 plugins
|
#lv2 plugins
|
||||||
lv2
|
lv2
|
||||||
lv2-avw-plugins
|
lv2-avw-plugins
|
||||||
lv2-fil-plugins
|
|
||||||
lv2-invada-plugins
|
lv2-invada-plugins
|
||||||
lv2-kn0ck0ut
|
lv2-kn0ck0ut
|
||||||
lv2-ll-plugins
|
lv2-ll-plugins
|
||||||
|
|||||||
@@ -30,7 +30,7 @@ part / --size=6144
|
|||||||
k3b # ~15 megs
|
k3b # ~15 megs
|
||||||
#kdeartwork # only include some parts of kdeartwork
|
#kdeartwork # only include some parts of kdeartwork
|
||||||
fuse
|
fuse
|
||||||
liveusb-creator
|
mediawriter
|
||||||
|
|
||||||
# only include kdegames-minimal
|
# only include kdegames-minimal
|
||||||
-kdegames
|
-kdegames
|
||||||
|
|||||||
@@ -133,9 +133,9 @@ backintime-kde
|
|||||||
libotf
|
libotf
|
||||||
|
|
||||||
#root
|
#root
|
||||||
root
|
#root
|
||||||
root-gui-fitpanel
|
#root-gui-fitpanel
|
||||||
root-python
|
#root-python
|
||||||
|
|
||||||
#Multiple jobs/clustering system
|
#Multiple jobs/clustering system
|
||||||
# torque
|
# torque
|
||||||
|
|||||||
@@ -4,7 +4,11 @@
|
|||||||
|
|
||||||
%include fedora-live-base.ks
|
%include fedora-live-base.ks
|
||||||
%include fedora-workstation-packages.ks
|
%include fedora-workstation-packages.ks
|
||||||
%include snippets/packagekit-cached-metadata.ks
|
#
|
||||||
|
# Disable this for now to see if packagekit is causing
|
||||||
|
# compose failures by leaving a gpg-agent around holding /dev/null open.
|
||||||
|
#
|
||||||
|
#include snippets/packagekit-cached-metadata.ks
|
||||||
|
|
||||||
part / --size 6656
|
part / --size 6656
|
||||||
|
|
||||||
|
|||||||
@@ -23,8 +23,8 @@ caja-actions
|
|||||||
mate-disk-usage-analyzer
|
mate-disk-usage-analyzer
|
||||||
|
|
||||||
# more backgrounds
|
# more backgrounds
|
||||||
f24-backgrounds-base
|
f25-backgrounds-base
|
||||||
f24-backgrounds-mate
|
f25-backgrounds-mate
|
||||||
f24-backgrounds-extras-base
|
f24-backgrounds-extras-base
|
||||||
|
|
||||||
# system tools
|
# system tools
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
# Exactly one of the following should be uncommented
|
# Exactly one of the following should be uncommented
|
||||||
|
|
||||||
# For the master branch 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
|
# For non-master branches the following should be uncommented
|
||||||
# %include fedora-repo-not-rawhide.ks
|
%include fedora-repo-not-rawhide.ks
|
||||||
|
|||||||
Reference in New Issue
Block a user