mirror of
https://pagure.io/fedora-kickstarts.git
synced 2025-12-11 01:20:30 +08:00
Compare commits
77 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9bfe625d34 | ||
|
|
de56fb5bf2 | ||
|
|
4d772b386c | ||
|
|
ce61f186bb | ||
|
|
5579ccc249 | ||
|
|
d761360668 | ||
|
|
9625f87b66 | ||
|
|
ba05c3ed08 | ||
|
|
93227e4c16 | ||
|
|
8d089260b2 | ||
|
|
9122e0d384 | ||
|
|
07998a94aa | ||
|
|
eda86d50a4 | ||
|
|
8e60e7d480 | ||
|
|
bba9b95b64 | ||
|
|
d78446b58c | ||
|
|
7d61f0ac6e | ||
|
|
2c0b103fef | ||
|
|
c125e408da | ||
|
|
c2e7a402bf | ||
|
|
b2f1a8e9dd | ||
|
|
02905f6946 | ||
|
|
eb8823e1d7 | ||
|
|
265950301c | ||
|
|
85c65cf1c9 | ||
|
|
9288235085 | ||
|
|
a26624ed9b | ||
|
|
50d56638a4 | ||
|
|
f111c49a16 | ||
|
|
75b3a92964 | ||
|
|
c69f0a4e2d | ||
|
|
47b27db344 | ||
|
|
8db08b9dc9 | ||
|
|
1021a05fd1 | ||
|
|
dcebd2c540 | ||
|
|
d22816d5ff | ||
|
|
9b3251521f | ||
|
|
41cdac9e94 | ||
|
|
d6a2350a39 | ||
|
|
aac93c046a | ||
|
|
aeb2bf2034 | ||
|
|
d94cd77007 | ||
|
|
779c417bcd | ||
|
|
c8dc4f13f5 | ||
|
|
8011bf222f | ||
|
|
4ab5d14b10 | ||
|
|
37589abe3d | ||
|
|
59142fcc92 | ||
|
|
e4975f4c09 | ||
|
|
77f0bcbfd2 | ||
|
|
02b55984ec | ||
|
|
a29472b8c8 | ||
|
|
b6b2f1c8b1 | ||
|
|
f110c70651 | ||
|
|
359cf00301 | ||
|
|
84f578fcfc | ||
|
|
9d08686776 | ||
|
|
a60ccfaea5 | ||
|
|
b8706aa425 | ||
|
|
060a19dc48 | ||
|
|
3b11ed5a50 | ||
|
|
1afc133c89 | ||
|
|
9a220d6fa2 | ||
|
|
f0b7758285 | ||
|
|
0458ba8098 | ||
|
|
f573b2905b | ||
|
|
b8dca705d6 | ||
|
|
13a77ad28b | ||
|
|
96b509716f | ||
|
|
7e9439c5f0 | ||
|
|
802966ff92 | ||
|
|
e10a135b4d | ||
|
|
69cd14ecc8 | ||
|
|
3edb2534c5 | ||
|
|
f340f0eddf | ||
|
|
d356510dc3 | ||
|
|
6ac1f99024 |
@@ -7,10 +7,6 @@ firewall --enabled --service=mdns,ssh
|
|||||||
# configure extlinux bootloader
|
# configure extlinux bootloader
|
||||||
bootloader extlinux
|
bootloader extlinux
|
||||||
|
|
||||||
part /boot --size=512 --fstype ext3
|
|
||||||
part swap --size=512 --fstype swap
|
|
||||||
part / --size=3000 --fstype ext4
|
|
||||||
|
|
||||||
# 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
|
||||||
|
|
||||||
@@ -25,14 +21,12 @@ services --enabled=ssh,NetworkManager,avahi-daemon,rsyslog,chronyd --disabled=ne
|
|||||||
@dial-up
|
@dial-up
|
||||||
|
|
||||||
kernel
|
kernel
|
||||||
|
kernel-lpae
|
||||||
dracut-config-generic
|
|
||||||
|
|
||||||
chrony
|
chrony
|
||||||
arm-boot-config
|
arm-boot-config
|
||||||
extlinux-bootloader
|
extlinux-bootloader
|
||||||
initial-setup
|
initial-setup
|
||||||
initial-setup-gui
|
|
||||||
#lets resize / on first boot
|
#lets resize / on first boot
|
||||||
dracut-modules-growroot
|
dracut-modules-growroot
|
||||||
|
|
||||||
@@ -40,7 +34,15 @@ dracut-modules-growroot
|
|||||||
dracut-config-generic
|
dracut-config-generic
|
||||||
|
|
||||||
# install uboot images
|
# install uboot images
|
||||||
uboot-images-armv7
|
uboot-beagle
|
||||||
|
uboot-beaglebone
|
||||||
|
uboot-origen
|
||||||
|
uboot-panda
|
||||||
|
uboot-smdkv310
|
||||||
|
uboot-uevm
|
||||||
|
uboot-wandboard_dl
|
||||||
|
uboot-wandboard_solo
|
||||||
|
uboot-wandboard_quad
|
||||||
|
|
||||||
%end
|
%end
|
||||||
|
|
||||||
|
|||||||
12
fedora-arm-desktop-vfat.ks
Normal file
12
fedora-arm-desktop-vfat.ks
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
%include fedora-arm-base.ks
|
||||||
|
%include fedora-arm-xbase.ks
|
||||||
|
%include fedora-desktop-packages.ks
|
||||||
|
%include fedora-arm-vfat-partitioning.ks
|
||||||
|
|
||||||
|
part / --size=4000 --fstype ext4
|
||||||
|
|
||||||
|
%packages
|
||||||
|
-initial-setup
|
||||||
|
|
||||||
|
%end
|
||||||
|
|
||||||
12
fedora-arm-desktop.ks
Normal file
12
fedora-arm-desktop.ks
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
%include fedora-arm-base.ks
|
||||||
|
%include fedora-arm-xbase.ks
|
||||||
|
%include fedora-desktop-packages.ks
|
||||||
|
%include fedora-arm-partitioning.ks
|
||||||
|
|
||||||
|
part / --size=4000 --fstype ext4
|
||||||
|
|
||||||
|
%packages
|
||||||
|
-initial-setup
|
||||||
|
|
||||||
|
%end
|
||||||
|
|
||||||
13
fedora-arm-kde-vfat.ks
Normal file
13
fedora-arm-kde-vfat.ks
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
%include fedora-arm-base.ks
|
||||||
|
%include fedora-arm-xbase.ks
|
||||||
|
%include fedora-kde-packages.ks
|
||||||
|
%include fedora-arm-vfat-partitioning.ks
|
||||||
|
|
||||||
|
part / --size=4000 --fstype ext4
|
||||||
|
|
||||||
|
%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
|
||||||
@@ -1,6 +1,7 @@
|
|||||||
%include fedora-arm-base.ks
|
%include fedora-arm-base.ks
|
||||||
%include fedora-arm-xbase.ks
|
%include fedora-arm-xbase.ks
|
||||||
%include fedora-kde-packages.ks
|
%include fedora-kde-packages.ks
|
||||||
|
%include fedora-arm-partitioning.ks
|
||||||
|
|
||||||
part / --size=4000 --fstype ext4
|
part / --size=4000 --fstype ext4
|
||||||
|
|
||||||
|
|||||||
11
fedora-arm-lxde-vfat.ks
Normal file
11
fedora-arm-lxde-vfat.ks
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
%include fedora-arm-base.ks
|
||||||
|
%include fedora-arm-xbase.ks
|
||||||
|
%include fedora-lxde-packages.ks
|
||||||
|
%include fedora-arm-vfat-partitioning.ks
|
||||||
|
|
||||||
|
%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
|
||||||
@@ -1,6 +1,7 @@
|
|||||||
%include fedora-arm-base.ks
|
%include fedora-arm-base.ks
|
||||||
%include fedora-arm-xbase.ks
|
%include fedora-arm-xbase.ks
|
||||||
%include fedora-lxde-packages.ks
|
%include fedora-lxde-packages.ks
|
||||||
|
%include fedora-arm-partitioning.ks
|
||||||
|
|
||||||
%post
|
%post
|
||||||
echo -n "Enabling initial-setup gui mode on startup"
|
echo -n "Enabling initial-setup gui mode on startup"
|
||||||
|
|||||||
13
fedora-arm-mate-vfat.ks
Normal file
13
fedora-arm-mate-vfat.ks
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
%include fedora-arm-base.ks
|
||||||
|
%include fedora-arm-xbase.ks
|
||||||
|
%include fedora-mate-packages.ks
|
||||||
|
%include fedora-arm-vfat-partitioning.ks
|
||||||
|
|
||||||
|
part / --size=5000 --fstype ext4
|
||||||
|
|
||||||
|
%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
|
||||||
@@ -1,6 +1,7 @@
|
|||||||
%include fedora-arm-base.ks
|
%include fedora-arm-base.ks
|
||||||
%include fedora-arm-xbase.ks
|
%include fedora-arm-xbase.ks
|
||||||
%include fedora-mate-packages.ks
|
%include fedora-mate-packages.ks
|
||||||
|
%include fedora-arm-partitioning.ks
|
||||||
|
|
||||||
part / --size=5000 --fstype ext4
|
part / --size=5000 --fstype ext4
|
||||||
|
|
||||||
|
|||||||
20
fedora-arm-minimal-vfat.ks
Normal file
20
fedora-arm-minimal-vfat.ks
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
%include fedora-arm-base.ks
|
||||||
|
%include fedora-arm-vfat-partitioning.ks
|
||||||
|
|
||||||
|
part swap --size=128 --fstype swap
|
||||||
|
part / --size=1400 --fstype ext4
|
||||||
|
|
||||||
|
%post
|
||||||
|
|
||||||
|
# setup systemd to boot to the right runlevel
|
||||||
|
echo -n "Setting default runlevel to multiuser text mode"
|
||||||
|
rm -f /etc/systemd/system/default.target
|
||||||
|
ln -s /lib/systemd/system/multi-user.target /etc/systemd/system/default.target
|
||||||
|
echo .
|
||||||
|
|
||||||
|
echo -n "Enabling initial-setup text mode on startup"
|
||||||
|
ln -s /usr/lib/systemd/system/initial-setup-text.service /etc/systemd/system/multi-user.target.wants/initial-setup-text.service
|
||||||
|
echo .
|
||||||
|
|
||||||
|
%end
|
||||||
|
|
||||||
@@ -1,14 +1,9 @@
|
|||||||
%include fedora-arm-base.ks
|
%include fedora-arm-base.ks
|
||||||
|
%include fedora-arm-partitioning.ks
|
||||||
|
|
||||||
part swap --size=128 --fstype swap
|
part swap --size=128 --fstype swap
|
||||||
part / --size=1400 --fstype ext4
|
part / --size=1400 --fstype ext4
|
||||||
|
|
||||||
%packages
|
|
||||||
-@standard
|
|
||||||
-@dial-up
|
|
||||||
-initial-setup-gui
|
|
||||||
%end
|
|
||||||
|
|
||||||
%post
|
%post
|
||||||
|
|
||||||
# setup systemd to boot to the right runlevel
|
# setup systemd to boot to the right runlevel
|
||||||
|
|||||||
4
fedora-arm-partitioning.ks
Normal file
4
fedora-arm-partitioning.ks
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
part /boot --size=512 --fstype ext3
|
||||||
|
part swap --size=512 --fstype swap
|
||||||
|
part / --size=3000 --fstype ext4
|
||||||
|
|
||||||
11
fedora-arm-soas-vfat.ks
Normal file
11
fedora-arm-soas-vfat.ks
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
%include fedora-arm-base.ks
|
||||||
|
%include fedora-arm-xbase.ks
|
||||||
|
%include fedora-soas-packages.ks
|
||||||
|
%include fedora-arm-vfat-partitioning.ks
|
||||||
|
|
||||||
|
%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
|
||||||
@@ -1,6 +1,7 @@
|
|||||||
%include fedora-arm-base.ks
|
%include fedora-arm-base.ks
|
||||||
%include fedora-arm-xbase.ks
|
%include fedora-arm-xbase.ks
|
||||||
%include fedora-soas-packages.ks
|
%include fedora-soas-packages.ks
|
||||||
|
%include fedora-arm-partitioning.ks
|
||||||
|
|
||||||
%post
|
%post
|
||||||
echo -n "Enabling initial-setup gui mode on startup"
|
echo -n "Enabling initial-setup gui mode on startup"
|
||||||
|
|||||||
4
fedora-arm-vfat-partitioning.ks
Normal file
4
fedora-arm-vfat-partitioning.ks
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
part /boot/uboot --size=20 --fstype vfat
|
||||||
|
part swap --size=512 --fstype swap
|
||||||
|
part / --size=3400 --fstype ext4
|
||||||
|
|
||||||
@@ -1,12 +0,0 @@
|
|||||||
%include fedora-arm-base.ks
|
|
||||||
%include fedora-arm-xbase.ks
|
|
||||||
%include fedora-workstation-packages.ks
|
|
||||||
|
|
||||||
part / --size=5000 --fstype ext4
|
|
||||||
|
|
||||||
%packages
|
|
||||||
-initial-setup
|
|
||||||
-initial-setup-gui
|
|
||||||
|
|
||||||
%end
|
|
||||||
|
|
||||||
@@ -6,3 +6,15 @@
|
|||||||
@printing
|
@printing
|
||||||
%end
|
%end
|
||||||
|
|
||||||
|
%post
|
||||||
|
# X on arm does not detect the driver needed correctly so we need a snippet to set something
|
||||||
|
# using fbdev as the lowest common denominator.
|
||||||
|
|
||||||
|
cat > /etc/X11/xorg.conf.d/fbdev.conf <<EOF
|
||||||
|
Section "Device"
|
||||||
|
Identifier "Display"
|
||||||
|
Driver "fbdev"
|
||||||
|
EndSection
|
||||||
|
EOF
|
||||||
|
|
||||||
|
%end
|
||||||
|
|||||||
11
fedora-arm-xfce-vfat.ks
Normal file
11
fedora-arm-xfce-vfat.ks
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
%include fedora-arm-base.ks
|
||||||
|
%include fedora-arm-xbase.ks
|
||||||
|
%include fedora-xfce-packages.ks
|
||||||
|
%include fedora-arm-vfat-partitioning.ks
|
||||||
|
|
||||||
|
%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
|
||||||
@@ -1,6 +1,7 @@
|
|||||||
%include fedora-arm-base.ks
|
%include fedora-arm-base.ks
|
||||||
%include fedora-arm-xbase.ks
|
%include fedora-arm-xbase.ks
|
||||||
%include fedora-xfce-packages.ks
|
%include fedora-xfce-packages.ks
|
||||||
|
%include fedora-arm-partitioning.ks
|
||||||
|
|
||||||
%post
|
%post
|
||||||
echo -n "Enabling initial-setup gui mode on startup"
|
echo -n "Enabling initial-setup gui mode on startup"
|
||||||
|
|||||||
@@ -1,232 +0,0 @@
|
|||||||
# Fedora Atomic is a cloud-focused spin implementing the Project Atomic
|
|
||||||
# patterns.
|
|
||||||
#
|
|
||||||
# RIGHT NOW, this is very like the traditional cloud image -- this is
|
|
||||||
# just a starting point.
|
|
||||||
|
|
||||||
text
|
|
||||||
lang en_US.UTF-8
|
|
||||||
keyboard us
|
|
||||||
timezone --utc Etc/UTC
|
|
||||||
|
|
||||||
auth --useshadow --enablemd5
|
|
||||||
selinux --enforcing
|
|
||||||
rootpw --lock --iscrypted locked
|
|
||||||
user --name=none
|
|
||||||
|
|
||||||
firewall --disabled
|
|
||||||
|
|
||||||
bootloader --timeout=1 --append="no_timer_check console=tty1 console=ttyS0,115200n8" --extlinux
|
|
||||||
|
|
||||||
network --bootproto=dhcp --device=eth0 --activate --onboot=on
|
|
||||||
services --enabled=network,sshd,rsyslog,cloud-init,cloud-init-local,cloud-config,cloud-final
|
|
||||||
|
|
||||||
zerombr
|
|
||||||
clearpart --all
|
|
||||||
part / --size 3000 --fstype ext4
|
|
||||||
|
|
||||||
%include fedora-repo.ks
|
|
||||||
|
|
||||||
|
|
||||||
reboot
|
|
||||||
|
|
||||||
# Package list.
|
|
||||||
%packages
|
|
||||||
|
|
||||||
fedora-release-cloud
|
|
||||||
|
|
||||||
kernel-core
|
|
||||||
@core
|
|
||||||
grubby
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# cloud-init does magical things with EC2 metadata, including provisioning
|
|
||||||
# a user account with ssh keys.
|
|
||||||
cloud-init
|
|
||||||
|
|
||||||
# this is used by openstack's cloud orchestration framework (and it's small)
|
|
||||||
heat-cfntools
|
|
||||||
|
|
||||||
# need this for growpart, because parted doesn't yet support resizepart
|
|
||||||
# https://bugzilla.redhat.com/show_bug.cgi?id=966993
|
|
||||||
cloud-utils-growpart
|
|
||||||
|
|
||||||
# We need this image to be portable; also, rescue mode isn't useful here.
|
|
||||||
dracut-config-generic
|
|
||||||
-dracut-config-rescue
|
|
||||||
|
|
||||||
syslinux-extlinux
|
|
||||||
|
|
||||||
# Needed initially, but removed below.
|
|
||||||
firewalld
|
|
||||||
|
|
||||||
# cherry-pick a few things from @standard
|
|
||||||
tar
|
|
||||||
rsync
|
|
||||||
|
|
||||||
# Some things from @core we can do without in a minimal install
|
|
||||||
-biosdevname
|
|
||||||
-plymouth
|
|
||||||
-NetworkManager
|
|
||||||
-iprutils
|
|
||||||
-kbd
|
|
||||||
-uboot-tools
|
|
||||||
-kernel
|
|
||||||
-grub2
|
|
||||||
|
|
||||||
%end
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
%post --erroronfail
|
|
||||||
|
|
||||||
# Create grub.conf for EC2. This used to be done by appliance creator but
|
|
||||||
# anaconda doesn't do it. And, in case appliance-creator is used, we're
|
|
||||||
# overriding it here so that both cases get the exact same file.
|
|
||||||
# Note that the console line is different -- that's because EC2 provides
|
|
||||||
# different virtual hardware, and this is a convenient way to act differently
|
|
||||||
echo -n "Creating grub.conf for pvgrub"
|
|
||||||
rootuuid=$( awk '$2=="/" { print $1 };' /etc/fstab )
|
|
||||||
mkdir /boot/grub
|
|
||||||
echo -e 'default=0\ntimeout=0\n\n' > /boot/grub/grub.conf
|
|
||||||
for kv in $( ls -1v /boot/vmlinuz* |grep -v rescue |sed s/.*vmlinuz-// ); do
|
|
||||||
echo "title Fedora ($kv)" >> /boot/grub/grub.conf
|
|
||||||
echo -e "\troot (hd0,0)" >> /boot/grub/grub.conf
|
|
||||||
echo -e "\tkernel /boot/vmlinuz-$kv ro root=$rootuuid no_timer_check console=hvc0 LANG=en_US.UTF-8" >> /boot/grub/grub.conf
|
|
||||||
echo -e "\tinitrd /boot/initramfs-$kv.img" >> /boot/grub/grub.conf
|
|
||||||
echo
|
|
||||||
done
|
|
||||||
|
|
||||||
|
|
||||||
#link grub.conf to menu.lst for ec2 to work
|
|
||||||
echo -n "Linking menu.lst to old-style grub.conf for pv-grub"
|
|
||||||
ln -sf grub.conf /boot/grub/menu.lst
|
|
||||||
ln -sf /boot/grub/grub.conf /etc/grub.conf
|
|
||||||
|
|
||||||
# older versions of livecd-tools do not follow "rootpw --lock" line above
|
|
||||||
# https://bugzilla.redhat.com/show_bug.cgi?id=964299
|
|
||||||
passwd -l root
|
|
||||||
# remove the user anaconda forces us to make
|
|
||||||
userdel -r none
|
|
||||||
|
|
||||||
# Kickstart specifies timeout in seconds; syslinux uses 10ths.
|
|
||||||
# 0 means wait forever, so instead we'll go with 1.
|
|
||||||
sed -i 's/^timeout 10/timeout 1/' /boot/extlinux/extlinux.conf
|
|
||||||
|
|
||||||
# setup systemd to boot to the right runlevel
|
|
||||||
echo -n "Setting default runlevel to multiuser text mode"
|
|
||||||
rm -f /etc/systemd/system/default.target
|
|
||||||
ln -s /lib/systemd/system/multi-user.target /etc/systemd/system/default.target
|
|
||||||
echo .
|
|
||||||
|
|
||||||
# If you want to remove rsyslog and just use journald, remove this!
|
|
||||||
echo -n "Disabling persistent journal"
|
|
||||||
rmdir /var/log/journal/
|
|
||||||
echo .
|
|
||||||
|
|
||||||
# this is installed by default but we don't need it in virt
|
|
||||||
echo "Removing linux-firmware package."
|
|
||||||
yum -C -y remove 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"
|
|
||||||
|
|
||||||
# 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"
|
|
||||||
|
|
||||||
echo -n "Getty fixes"
|
|
||||||
# although we want console output going to the serial console, we don't
|
|
||||||
# actually have the opportunity to login there. FIX.
|
|
||||||
# we don't really need to auto-spawn _any_ gettys.
|
|
||||||
sed -i '/^#NAutoVTs=.*/ a\
|
|
||||||
NAutoVTs=0' /etc/systemd/logind.conf
|
|
||||||
|
|
||||||
echo -n "Network fixes"
|
|
||||||
# initscripts don't like this file to be missing.
|
|
||||||
cat > /etc/sysconfig/network << EOF
|
|
||||||
NETWORKING=yes
|
|
||||||
NOZEROCONF=yes
|
|
||||||
EOF
|
|
||||||
|
|
||||||
# For cloud images, 'eth0' _is_ the predictable device name, since
|
|
||||||
# we don't want to be tied to specific virtual (!) hardware
|
|
||||||
rm -f /etc/udev/rules.d/70*
|
|
||||||
ln -s /dev/null /etc/udev/rules.d/80-net-setup-link.rules
|
|
||||||
|
|
||||||
# simple eth0 config, again not hard-coded to the build hardware
|
|
||||||
cat > /etc/sysconfig/network-scripts/ifcfg-eth0 << EOF
|
|
||||||
DEVICE="eth0"
|
|
||||||
BOOTPROTO="dhcp"
|
|
||||||
ONBOOT="yes"
|
|
||||||
TYPE="Ethernet"
|
|
||||||
PERSISTENT_DHCLIENT="yes"
|
|
||||||
EOF
|
|
||||||
|
|
||||||
# generic localhost names
|
|
||||||
cat > /etc/hosts << EOF
|
|
||||||
127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4
|
|
||||||
::1 localhost localhost.localdomain localhost6 localhost6.localdomain6
|
|
||||||
|
|
||||||
EOF
|
|
||||||
echo .
|
|
||||||
|
|
||||||
|
|
||||||
# Because memory is scarce resource in most cloud/virt environments,
|
|
||||||
# and because this impedes forensics, we are differing from the Fedora
|
|
||||||
# default of having /tmp on tmpfs.
|
|
||||||
echo "Disabling tmpfs for /tmp."
|
|
||||||
systemctl mask tmp.mount
|
|
||||||
|
|
||||||
# make sure firstboot doesn't start
|
|
||||||
echo "RUN_FIRSTBOOT=NO" > /etc/sysconfig/firstboot
|
|
||||||
|
|
||||||
# Uncomment this if you want to use cloud init but suppress the creation
|
|
||||||
# of an "ec2-user" account. This will, in the absence of further config,
|
|
||||||
# cause the ssh key from a metadata source to be put in the root account.
|
|
||||||
#cat <<EOF > /etc/cloud/cloud.cfg.d/50_suppress_ec2-user_use_root.cfg
|
|
||||||
#users: []
|
|
||||||
#disable_root: 0
|
|
||||||
#EOF
|
|
||||||
|
|
||||||
echo "Removing random-seed so it's not the same in every image."
|
|
||||||
rm -f /var/lib/random-seed
|
|
||||||
|
|
||||||
echo "Cleaning old yum repodata."
|
|
||||||
yum history new
|
|
||||||
yum clean all
|
|
||||||
truncate -c -s 0 /var/log/yum.log
|
|
||||||
|
|
||||||
echo "Import RPM GPG key"
|
|
||||||
releasever=$(rpm -q --qf '%{version}\n' fedora-release)
|
|
||||||
basearch=$(uname -i)
|
|
||||||
rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-fedora-$releasever-$basearch
|
|
||||||
|
|
||||||
echo "Packages within this cloud image:"
|
|
||||||
echo "-----------------------------------------------------------------------"
|
|
||||||
rpm -qa
|
|
||||||
echo "-----------------------------------------------------------------------"
|
|
||||||
# Note that running rpm recreates the rpm db files which aren't needed/wanted
|
|
||||||
rm -f /var/lib/rpm/__db*
|
|
||||||
|
|
||||||
|
|
||||||
echo "Fixing SELinux contexts."
|
|
||||||
touch /var/log/cron
|
|
||||||
touch /var/log/boot.log
|
|
||||||
mkdir -p /var/cache/yum
|
|
||||||
chattr -i /boot/extlinux/ldlinux.sys
|
|
||||||
/usr/sbin/fixfiles -R -a restore
|
|
||||||
chattr +i /boot/extlinux/ldlinux.sys
|
|
||||||
|
|
||||||
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.)"
|
|
||||||
|
|
||||||
%end
|
|
||||||
|
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
# This is a basic Fedora 21 spin designed to work in OpenStack and other
|
# This is a basic Fedora 20 spin designed to work in OpenStack and other
|
||||||
# private cloud environments. It's configured with cloud-init so it will
|
# private cloud environments. It's configured with cloud-init so it will
|
||||||
# take advantage of ec2-compatible metadata services for provisioning ssh
|
# take advantage of ec2-compatible metadata services for provisioning ssh
|
||||||
# keys. Cloud-init creates a user account named "fedora" with passwordless
|
# keys. Cloud-init creates a user account named "fedora" with passwordless
|
||||||
@@ -11,7 +11,6 @@
|
|||||||
# may need slight modification for use with actual anaconda or other tools.
|
# may need slight modification for use with actual anaconda or other tools.
|
||||||
# We intend to target anaconda-in-a-vm style image building for F20.
|
# We intend to target anaconda-in-a-vm style image building for F20.
|
||||||
|
|
||||||
text
|
|
||||||
lang en_US.UTF-8
|
lang en_US.UTF-8
|
||||||
keyboard us
|
keyboard us
|
||||||
timezone --utc Etc/UTC
|
timezone --utc Etc/UTC
|
||||||
@@ -19,18 +18,18 @@ timezone --utc Etc/UTC
|
|||||||
auth --useshadow --enablemd5
|
auth --useshadow --enablemd5
|
||||||
selinux --enforcing
|
selinux --enforcing
|
||||||
rootpw --lock --iscrypted locked
|
rootpw --lock --iscrypted locked
|
||||||
user --name=none
|
|
||||||
|
|
||||||
firewall --disabled
|
firewall --disabled
|
||||||
|
|
||||||
bootloader --timeout=1 --append="no_timer_check console=tty1 console=ttyS0,115200n8" --extlinux
|
bootloader --timeout=1 --append="console=tty1 console=ttyS0,115200n8" extlinux
|
||||||
|
|
||||||
network --bootproto=dhcp --device=eth0 --activate --onboot=on
|
network --bootproto=dhcp --device=eth0 --onboot=on
|
||||||
services --enabled=network,sshd,rsyslog,cloud-init,cloud-init-local,cloud-config,cloud-final
|
services --enabled=network,sshd,rsyslog,cloud-init,cloud-init-local,cloud-config,cloud-final
|
||||||
|
|
||||||
|
|
||||||
zerombr
|
zerombr
|
||||||
clearpart --all
|
clearpart --all
|
||||||
part / --size 3000 --fstype ext4
|
part / --size 2048 --fstype ext4
|
||||||
|
|
||||||
%include fedora-repo.ks
|
%include fedora-repo.ks
|
||||||
|
|
||||||
@@ -39,10 +38,6 @@ reboot
|
|||||||
|
|
||||||
# Package list.
|
# Package list.
|
||||||
%packages
|
%packages
|
||||||
|
|
||||||
fedora-release-cloud
|
|
||||||
|
|
||||||
kernel-core
|
|
||||||
@core
|
@core
|
||||||
grubby
|
grubby
|
||||||
|
|
||||||
@@ -76,9 +71,6 @@ rsync
|
|||||||
-NetworkManager
|
-NetworkManager
|
||||||
-iprutils
|
-iprutils
|
||||||
-kbd
|
-kbd
|
||||||
-uboot-tools
|
|
||||||
-kernel
|
|
||||||
-grub2
|
|
||||||
|
|
||||||
%end
|
%end
|
||||||
|
|
||||||
@@ -97,8 +89,8 @@ mkdir /boot/grub
|
|||||||
echo -e 'default=0\ntimeout=0\n\n' > /boot/grub/grub.conf
|
echo -e 'default=0\ntimeout=0\n\n' > /boot/grub/grub.conf
|
||||||
for kv in $( ls -1v /boot/vmlinuz* |grep -v rescue |sed s/.*vmlinuz-// ); do
|
for kv in $( ls -1v /boot/vmlinuz* |grep -v rescue |sed s/.*vmlinuz-// ); do
|
||||||
echo "title Fedora ($kv)" >> /boot/grub/grub.conf
|
echo "title Fedora ($kv)" >> /boot/grub/grub.conf
|
||||||
echo -e "\troot (hd0,0)" >> /boot/grub/grub.conf
|
echo -e "\troot (hd0)" >> /boot/grub/grub.conf
|
||||||
echo -e "\tkernel /boot/vmlinuz-$kv ro root=$rootuuid no_timer_check console=hvc0 LANG=en_US.UTF-8" >> /boot/grub/grub.conf
|
echo -e "\tkernel /boot/vmlinuz-$kv ro root=$rootuuid console=hvc0 LANG=en_US.UTF-8" >> /boot/grub/grub.conf
|
||||||
echo -e "\tinitrd /boot/initramfs-$kv.img" >> /boot/grub/grub.conf
|
echo -e "\tinitrd /boot/initramfs-$kv.img" >> /boot/grub/grub.conf
|
||||||
echo
|
echo
|
||||||
done
|
done
|
||||||
@@ -112,8 +104,6 @@ ln -sf /boot/grub/grub.conf /etc/grub.conf
|
|||||||
# 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
|
||||||
passwd -l root
|
passwd -l root
|
||||||
# remove the user anaconda forces us to make
|
|
||||||
userdel -r none
|
|
||||||
|
|
||||||
# Kickstart specifies timeout in seconds; syslinux uses 10ths.
|
# Kickstart specifies timeout in seconds; syslinux uses 10ths.
|
||||||
# 0 means wait forever, so instead we'll go with 1.
|
# 0 means wait forever, so instead we'll go with 1.
|
||||||
@@ -161,7 +151,7 @@ EOF
|
|||||||
# For cloud images, 'eth0' _is_ the predictable device name, since
|
# For cloud images, 'eth0' _is_ the predictable device name, since
|
||||||
# we don't want to be tied to specific virtual (!) hardware
|
# we don't want to be tied to specific virtual (!) hardware
|
||||||
rm -f /etc/udev/rules.d/70*
|
rm -f /etc/udev/rules.d/70*
|
||||||
ln -s /dev/null /etc/udev/rules.d/80-net-setup-link.rules
|
ln -s /dev/null /etc/udev/rules.d/80-net-name-slot.rules
|
||||||
|
|
||||||
# simple eth0 config, again not hard-coded to the build hardware
|
# simple eth0 config, again not hard-coded to the build hardware
|
||||||
cat > /etc/sysconfig/network-scripts/ifcfg-eth0 << EOF
|
cat > /etc/sysconfig/network-scripts/ifcfg-eth0 << EOF
|
||||||
@@ -169,7 +159,6 @@ DEVICE="eth0"
|
|||||||
BOOTPROTO="dhcp"
|
BOOTPROTO="dhcp"
|
||||||
ONBOOT="yes"
|
ONBOOT="yes"
|
||||||
TYPE="Ethernet"
|
TYPE="Ethernet"
|
||||||
PERSISTENT_DHCLIENT="yes"
|
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
# generic localhost names
|
# generic localhost names
|
||||||
|
|||||||
@@ -1,237 +0,0 @@
|
|||||||
# This is a Fedora 21 spin designed based on the Fedora Cloud Base Image
|
|
||||||
# but tailored specifically for Big Data processing out-of-the-box.
|
|
||||||
# Primarily, it builds on that image but adds extra packages, but over
|
|
||||||
# time may have additional focus.
|
|
||||||
#
|
|
||||||
# It's configured with cloud-init so it will take advantage of
|
|
||||||
# ec2-compatible metadata services for provisioning ssh keys. Cloud-init
|
|
||||||
# creates a user account named "fedora" with passwordless sudo access. The
|
|
||||||
# root password is empty and locked by default.
|
|
||||||
#
|
|
||||||
# Note that unlike the standard F20 install, this image has /tmp on disk
|
|
||||||
# rather than in tmpfs, since memory is usually at a premium.
|
|
||||||
|
|
||||||
text
|
|
||||||
lang en_US.UTF-8
|
|
||||||
keyboard us
|
|
||||||
timezone --utc Etc/UTC
|
|
||||||
|
|
||||||
auth --useshadow --enablemd5
|
|
||||||
selinux --enforcing
|
|
||||||
rootpw --lock --iscrypted locked
|
|
||||||
user --name=none
|
|
||||||
|
|
||||||
firewall --disabled
|
|
||||||
|
|
||||||
bootloader --timeout=1 --append="no_timer_check console=tty1 console=ttyS0,115200n8" --extlinux
|
|
||||||
|
|
||||||
network --bootproto=dhcp --device=eth0 --activate --onboot=on
|
|
||||||
services --enabled=network,sshd,rsyslog,cloud-init,cloud-init-local,cloud-config,cloud-final
|
|
||||||
|
|
||||||
zerombr
|
|
||||||
clearpart --all
|
|
||||||
part / --size 3000 --fstype ext4
|
|
||||||
|
|
||||||
%include fedora-repo.ks
|
|
||||||
|
|
||||||
|
|
||||||
reboot
|
|
||||||
|
|
||||||
# Package list.
|
|
||||||
%packages
|
|
||||||
|
|
||||||
fedora-release-cloud
|
|
||||||
|
|
||||||
kernel-core
|
|
||||||
@core
|
|
||||||
grubby
|
|
||||||
|
|
||||||
# cloud-init does magical things with EC2 metadata, including provisioning
|
|
||||||
# a user account with ssh keys.
|
|
||||||
cloud-init
|
|
||||||
|
|
||||||
# this is used by openstack's cloud orchestration framework (and it's small)
|
|
||||||
heat-cfntools
|
|
||||||
|
|
||||||
# need this for growpart, because parted doesn't yet support resizepart
|
|
||||||
# https://bugzilla.redhat.com/show_bug.cgi?id=966993
|
|
||||||
cloud-utils-growpart
|
|
||||||
|
|
||||||
# We need this image to be portable; also, rescue mode isn't useful here.
|
|
||||||
dracut-config-generic
|
|
||||||
-dracut-config-rescue
|
|
||||||
|
|
||||||
syslinux-extlinux
|
|
||||||
|
|
||||||
# Needed initially, but removed below.
|
|
||||||
firewalld
|
|
||||||
|
|
||||||
# cherry-pick a few things from @standard
|
|
||||||
tar
|
|
||||||
rsync
|
|
||||||
|
|
||||||
# Some things from @core we can do without in a minimal install
|
|
||||||
-biosdevname
|
|
||||||
-plymouth
|
|
||||||
-NetworkManager
|
|
||||||
-iprutils
|
|
||||||
-kbd
|
|
||||||
-uboot-tools
|
|
||||||
-kernel
|
|
||||||
-grub2
|
|
||||||
|
|
||||||
%end
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
%post --erroronfail
|
|
||||||
|
|
||||||
# Create grub.conf for EC2. This used to be done by appliance creator but
|
|
||||||
# anaconda doesn't do it. And, in case appliance-creator is used, we're
|
|
||||||
# overriding it here so that both cases get the exact same file.
|
|
||||||
# Note that the console line is different -- that's because EC2 provides
|
|
||||||
# different virtual hardware, and this is a convenient way to act differently
|
|
||||||
echo -n "Creating grub.conf for pvgrub"
|
|
||||||
rootuuid=$( awk '$2=="/" { print $1 };' /etc/fstab )
|
|
||||||
mkdir /boot/grub
|
|
||||||
echo -e 'default=0\ntimeout=0\n\n' > /boot/grub/grub.conf
|
|
||||||
for kv in $( ls -1v /boot/vmlinuz* |grep -v rescue |sed s/.*vmlinuz-// ); do
|
|
||||||
echo "title Fedora ($kv)" >> /boot/grub/grub.conf
|
|
||||||
echo -e "\troot (hd0,0)" >> /boot/grub/grub.conf
|
|
||||||
echo -e "\tkernel /boot/vmlinuz-$kv ro root=$rootuuid no_timer_check console=hvc0 LANG=en_US.UTF-8" >> /boot/grub/grub.conf
|
|
||||||
echo -e "\tinitrd /boot/initramfs-$kv.img" >> /boot/grub/grub.conf
|
|
||||||
echo
|
|
||||||
done
|
|
||||||
|
|
||||||
|
|
||||||
#link grub.conf to menu.lst for ec2 to work
|
|
||||||
echo -n "Linking menu.lst to old-style grub.conf for pv-grub"
|
|
||||||
ln -sf grub.conf /boot/grub/menu.lst
|
|
||||||
ln -sf /boot/grub/grub.conf /etc/grub.conf
|
|
||||||
|
|
||||||
# older versions of livecd-tools do not follow "rootpw --lock" line above
|
|
||||||
# https://bugzilla.redhat.com/show_bug.cgi?id=964299
|
|
||||||
passwd -l root
|
|
||||||
# remove the user anaconda forces us to make
|
|
||||||
userdel -r none
|
|
||||||
|
|
||||||
# Kickstart specifies timeout in seconds; syslinux uses 10ths.
|
|
||||||
# 0 means wait forever, so instead we'll go with 1.
|
|
||||||
sed -i 's/^timeout 10/timeout 1/' /boot/extlinux/extlinux.conf
|
|
||||||
|
|
||||||
# setup systemd to boot to the right runlevel
|
|
||||||
echo -n "Setting default runlevel to multiuser text mode"
|
|
||||||
rm -f /etc/systemd/system/default.target
|
|
||||||
ln -s /lib/systemd/system/multi-user.target /etc/systemd/system/default.target
|
|
||||||
echo .
|
|
||||||
|
|
||||||
# If you want to remove rsyslog and just use journald, remove this!
|
|
||||||
echo -n "Disabling persistent journal"
|
|
||||||
rmdir /var/log/journal/
|
|
||||||
echo .
|
|
||||||
|
|
||||||
# this is installed by default but we don't need it in virt
|
|
||||||
echo "Removing linux-firmware package."
|
|
||||||
yum -C -y remove 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"
|
|
||||||
|
|
||||||
# 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"
|
|
||||||
|
|
||||||
echo -n "Getty fixes"
|
|
||||||
# although we want console output going to the serial console, we don't
|
|
||||||
# actually have the opportunity to login there. FIX.
|
|
||||||
# we don't really need to auto-spawn _any_ gettys.
|
|
||||||
sed -i '/^#NAutoVTs=.*/ a\
|
|
||||||
NAutoVTs=0' /etc/systemd/logind.conf
|
|
||||||
|
|
||||||
echo -n "Network fixes"
|
|
||||||
# initscripts don't like this file to be missing.
|
|
||||||
cat > /etc/sysconfig/network << EOF
|
|
||||||
NETWORKING=yes
|
|
||||||
NOZEROCONF=yes
|
|
||||||
EOF
|
|
||||||
|
|
||||||
# For cloud images, 'eth0' _is_ the predictable device name, since
|
|
||||||
# we don't want to be tied to specific virtual (!) hardware
|
|
||||||
rm -f /etc/udev/rules.d/70*
|
|
||||||
ln -s /dev/null /etc/udev/rules.d/80-net-setup-link.rules
|
|
||||||
|
|
||||||
# simple eth0 config, again not hard-coded to the build hardware
|
|
||||||
cat > /etc/sysconfig/network-scripts/ifcfg-eth0 << EOF
|
|
||||||
DEVICE="eth0"
|
|
||||||
BOOTPROTO="dhcp"
|
|
||||||
ONBOOT="yes"
|
|
||||||
TYPE="Ethernet"
|
|
||||||
PERSISTENT_DHCLIENT="yes"
|
|
||||||
EOF
|
|
||||||
|
|
||||||
# generic localhost names
|
|
||||||
cat > /etc/hosts << EOF
|
|
||||||
127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4
|
|
||||||
::1 localhost localhost.localdomain localhost6 localhost6.localdomain6
|
|
||||||
|
|
||||||
EOF
|
|
||||||
echo .
|
|
||||||
|
|
||||||
|
|
||||||
# Because memory is scarce resource in most cloud/virt environments,
|
|
||||||
# and because this impedes forensics, we are differing from the Fedora
|
|
||||||
# default of having /tmp on tmpfs.
|
|
||||||
echo "Disabling tmpfs for /tmp."
|
|
||||||
systemctl mask tmp.mount
|
|
||||||
|
|
||||||
# make sure firstboot doesn't start
|
|
||||||
echo "RUN_FIRSTBOOT=NO" > /etc/sysconfig/firstboot
|
|
||||||
|
|
||||||
# Uncomment this if you want to use cloud init but suppress the creation
|
|
||||||
# of an "ec2-user" account. This will, in the absence of further config,
|
|
||||||
# cause the ssh key from a metadata source to be put in the root account.
|
|
||||||
#cat <<EOF > /etc/cloud/cloud.cfg.d/50_suppress_ec2-user_use_root.cfg
|
|
||||||
#users: []
|
|
||||||
#disable_root: 0
|
|
||||||
#EOF
|
|
||||||
|
|
||||||
echo "Removing random-seed so it's not the same in every image."
|
|
||||||
rm -f /var/lib/random-seed
|
|
||||||
|
|
||||||
echo "Cleaning old yum repodata."
|
|
||||||
yum history new
|
|
||||||
yum clean all
|
|
||||||
truncate -c -s 0 /var/log/yum.log
|
|
||||||
|
|
||||||
echo "Import RPM GPG key"
|
|
||||||
releasever=$(rpm -q --qf '%{version}\n' fedora-release)
|
|
||||||
basearch=$(uname -i)
|
|
||||||
rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-fedora-$releasever-$basearch
|
|
||||||
|
|
||||||
echo "Packages within this cloud image:"
|
|
||||||
echo "-----------------------------------------------------------------------"
|
|
||||||
rpm -qa
|
|
||||||
echo "-----------------------------------------------------------------------"
|
|
||||||
# Note that running rpm recreates the rpm db files which aren't needed/wanted
|
|
||||||
rm -f /var/lib/rpm/__db*
|
|
||||||
|
|
||||||
|
|
||||||
echo "Fixing SELinux contexts."
|
|
||||||
touch /var/log/cron
|
|
||||||
touch /var/log/boot.log
|
|
||||||
mkdir -p /var/cache/yum
|
|
||||||
chattr -i /boot/extlinux/ldlinux.sys
|
|
||||||
/usr/sbin/fixfiles -R -a restore
|
|
||||||
chattr +i /boot/extlinux/ldlinux.sys
|
|
||||||
|
|
||||||
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.)"
|
|
||||||
|
|
||||||
%end
|
|
||||||
|
|
||||||
@@ -1,228 +0,0 @@
|
|||||||
# This is a spin of the Fedora cloud image designed for trying out new
|
|
||||||
# images in rawhide. It won't be built for non-rawhide trees, let alone
|
|
||||||
# actual releases.
|
|
||||||
|
|
||||||
cmdline
|
|
||||||
lang en_US.UTF-8
|
|
||||||
keyboard us
|
|
||||||
timezone --utc Etc/UTC
|
|
||||||
|
|
||||||
auth --useshadow --enablemd5
|
|
||||||
selinux --enforcing
|
|
||||||
rootpw --lock --iscrypted locked
|
|
||||||
user --name=none
|
|
||||||
|
|
||||||
firewall --disabled
|
|
||||||
|
|
||||||
bootloader --timeout=1 --append="no_timer_check console=tty1 console=ttyS0,115200n8" --extlinux
|
|
||||||
|
|
||||||
network --bootproto=dhcp --device=eth0 --activate --onboot=on
|
|
||||||
services --enabled=network,sshd,rsyslog,cloud-init,cloud-init-local,cloud-config,cloud-final
|
|
||||||
|
|
||||||
zerombr
|
|
||||||
clearpart --all
|
|
||||||
part / --size 3000 --fstype ext4
|
|
||||||
|
|
||||||
%include fedora-repo.ks
|
|
||||||
|
|
||||||
|
|
||||||
reboot
|
|
||||||
|
|
||||||
# Package list.
|
|
||||||
%packages --excludedocs --instLangs=en_US
|
|
||||||
|
|
||||||
fedora-release-cloud
|
|
||||||
|
|
||||||
kernel-core
|
|
||||||
@core
|
|
||||||
grubby
|
|
||||||
|
|
||||||
# cloud-init does magical things with EC2 metadata, including provisioning
|
|
||||||
# a user account with ssh keys.
|
|
||||||
cloud-init
|
|
||||||
|
|
||||||
# this is used by openstack's cloud orchestration framework (and it's small)
|
|
||||||
heat-cfntools
|
|
||||||
|
|
||||||
# need this for growpart, because parted doesn't yet support resizepart
|
|
||||||
# https://bugzilla.redhat.com/show_bug.cgi?id=966993
|
|
||||||
cloud-utils-growpart
|
|
||||||
|
|
||||||
# We need this image to be portable; also, rescue mode isn't useful here.
|
|
||||||
dracut-config-generic
|
|
||||||
-dracut-config-rescue
|
|
||||||
|
|
||||||
syslinux-extlinux
|
|
||||||
|
|
||||||
# Needed initially, but removed below.
|
|
||||||
firewalld
|
|
||||||
|
|
||||||
# cherry-pick a few things from @standard
|
|
||||||
tar
|
|
||||||
rsync
|
|
||||||
|
|
||||||
# Some things from @core we can do without in a minimal install
|
|
||||||
-biosdevname
|
|
||||||
-plymouth
|
|
||||||
-NetworkManager
|
|
||||||
-iprutils
|
|
||||||
-kbd
|
|
||||||
-uboot-tools
|
|
||||||
-kernel
|
|
||||||
-grub2
|
|
||||||
|
|
||||||
%end
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
%post --erroronfail
|
|
||||||
|
|
||||||
# Create grub.conf for EC2. This used to be done by appliance creator but
|
|
||||||
# anaconda doesn't do it. And, in case appliance-creator is used, we're
|
|
||||||
# overriding it here so that both cases get the exact same file.
|
|
||||||
# Note that the console line is different -- that's because EC2 provides
|
|
||||||
# different virtual hardware, and this is a convenient way to act differently
|
|
||||||
echo -n "Creating grub.conf for pvgrub"
|
|
||||||
rootuuid=$( awk '$2=="/" { print $1 };' /etc/fstab )
|
|
||||||
mkdir /boot/grub
|
|
||||||
echo -e 'default=0\ntimeout=0\n\n' > /boot/grub/grub.conf
|
|
||||||
for kv in $( ls -1v /boot/vmlinuz* |grep -v rescue |sed s/.*vmlinuz-// ); do
|
|
||||||
echo "title Fedora ($kv)" >> /boot/grub/grub.conf
|
|
||||||
echo -e "\troot (hd0,0)" >> /boot/grub/grub.conf
|
|
||||||
echo -e "\tkernel /boot/vmlinuz-$kv ro root=$rootuuid no_timer_check console=hvc0 LANG=en_US.UTF-8" >> /boot/grub/grub.conf
|
|
||||||
echo -e "\tinitrd /boot/initramfs-$kv.img" >> /boot/grub/grub.conf
|
|
||||||
echo
|
|
||||||
done
|
|
||||||
|
|
||||||
|
|
||||||
#link grub.conf to menu.lst for ec2 to work
|
|
||||||
echo -n "Linking menu.lst to old-style grub.conf for pv-grub"
|
|
||||||
ln -sf grub.conf /boot/grub/menu.lst
|
|
||||||
ln -sf /boot/grub/grub.conf /etc/grub.conf
|
|
||||||
|
|
||||||
# older versions of livecd-tools do not follow "rootpw --lock" line above
|
|
||||||
# https://bugzilla.redhat.com/show_bug.cgi?id=964299
|
|
||||||
passwd -l root
|
|
||||||
# remove the user anaconda forces us to make
|
|
||||||
userdel -r none
|
|
||||||
|
|
||||||
# Kickstart specifies timeout in seconds; syslinux uses 10ths.
|
|
||||||
# 0 means wait forever, so instead we'll go with 1.
|
|
||||||
sed -i 's/^timeout 10/timeout 1/' /boot/extlinux/extlinux.conf
|
|
||||||
|
|
||||||
# setup systemd to boot to the right runlevel
|
|
||||||
echo -n "Setting default runlevel to multiuser text mode"
|
|
||||||
rm -f /etc/systemd/system/default.target
|
|
||||||
ln -s /lib/systemd/system/multi-user.target /etc/systemd/system/default.target
|
|
||||||
echo .
|
|
||||||
|
|
||||||
# If you want to remove rsyslog and just use journald, remove this!
|
|
||||||
echo -n "Disabling persistent journal"
|
|
||||||
rmdir /var/log/journal/
|
|
||||||
echo .
|
|
||||||
|
|
||||||
# this is installed by default but we don't need it in virt
|
|
||||||
echo "Removing linux-firmware package."
|
|
||||||
yum -C -y remove 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"
|
|
||||||
|
|
||||||
# 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"
|
|
||||||
|
|
||||||
echo -n "Getty fixes"
|
|
||||||
# although we want console output going to the serial console, we don't
|
|
||||||
# actually have the opportunity to login there. FIX.
|
|
||||||
# we don't really need to auto-spawn _any_ gettys.
|
|
||||||
sed -i '/^#NAutoVTs=.*/ a\
|
|
||||||
NAutoVTs=0' /etc/systemd/logind.conf
|
|
||||||
|
|
||||||
echo -n "Network fixes"
|
|
||||||
# initscripts don't like this file to be missing.
|
|
||||||
cat > /etc/sysconfig/network << EOF
|
|
||||||
NETWORKING=yes
|
|
||||||
NOZEROCONF=yes
|
|
||||||
EOF
|
|
||||||
|
|
||||||
# For cloud images, 'eth0' _is_ the predictable device name, since
|
|
||||||
# we don't want to be tied to specific virtual (!) hardware
|
|
||||||
rm -f /etc/udev/rules.d/70*
|
|
||||||
ln -s /dev/null /etc/udev/rules.d/80-net-setup-link.rules
|
|
||||||
|
|
||||||
# simple eth0 config, again not hard-coded to the build hardware
|
|
||||||
cat > /etc/sysconfig/network-scripts/ifcfg-eth0 << EOF
|
|
||||||
DEVICE="eth0"
|
|
||||||
BOOTPROTO="dhcp"
|
|
||||||
ONBOOT="yes"
|
|
||||||
TYPE="Ethernet"
|
|
||||||
PERSISTENT_DHCLIENT="yes"
|
|
||||||
EOF
|
|
||||||
|
|
||||||
# generic localhost names
|
|
||||||
cat > /etc/hosts << EOF
|
|
||||||
127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4
|
|
||||||
::1 localhost localhost.localdomain localhost6 localhost6.localdomain6
|
|
||||||
|
|
||||||
EOF
|
|
||||||
echo .
|
|
||||||
|
|
||||||
|
|
||||||
# Because memory is scarce resource in most cloud/virt environments,
|
|
||||||
# and because this impedes forensics, we are differing from the Fedora
|
|
||||||
# default of having /tmp on tmpfs.
|
|
||||||
echo "Disabling tmpfs for /tmp."
|
|
||||||
systemctl mask tmp.mount
|
|
||||||
|
|
||||||
# make sure firstboot doesn't start
|
|
||||||
echo "RUN_FIRSTBOOT=NO" > /etc/sysconfig/firstboot
|
|
||||||
|
|
||||||
# Uncomment this if you want to use cloud init but suppress the creation
|
|
||||||
# of an "ec2-user" account. This will, in the absence of further config,
|
|
||||||
# cause the ssh key from a metadata source to be put in the root account.
|
|
||||||
#cat <<EOF > /etc/cloud/cloud.cfg.d/50_suppress_ec2-user_use_root.cfg
|
|
||||||
#users: []
|
|
||||||
#disable_root: 0
|
|
||||||
#EOF
|
|
||||||
|
|
||||||
echo "Removing random-seed so it's not the same in every image."
|
|
||||||
rm -f /var/lib/random-seed
|
|
||||||
|
|
||||||
echo "Cleaning old yum repodata."
|
|
||||||
yum history new
|
|
||||||
yum clean all
|
|
||||||
truncate -c -s 0 /var/log/yum.log
|
|
||||||
|
|
||||||
echo "Import RPM GPG key"
|
|
||||||
releasever=$(rpm -q --qf '%{version}\n' fedora-release)
|
|
||||||
basearch=$(uname -i)
|
|
||||||
rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-fedora-$releasever-$basearch
|
|
||||||
|
|
||||||
echo "Packages within this cloud image:"
|
|
||||||
echo "-----------------------------------------------------------------------"
|
|
||||||
rpm -qa
|
|
||||||
echo "-----------------------------------------------------------------------"
|
|
||||||
# Note that running rpm recreates the rpm db files which aren't needed/wanted
|
|
||||||
rm -f /var/lib/rpm/__db*
|
|
||||||
|
|
||||||
|
|
||||||
echo "Fixing SELinux contexts."
|
|
||||||
touch /var/log/cron
|
|
||||||
touch /var/log/boot.log
|
|
||||||
mkdir -p /var/cache/yum
|
|
||||||
chattr -i /boot/extlinux/ldlinux.sys
|
|
||||||
/usr/sbin/fixfiles -R -a restore
|
|
||||||
chattr +i /boot/extlinux/ldlinux.sys
|
|
||||||
|
|
||||||
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.)"
|
|
||||||
|
|
||||||
%end
|
|
||||||
|
|
||||||
@@ -2,7 +2,6 @@
|
|||||||
@firefox
|
@firefox
|
||||||
@gnome-desktop
|
@gnome-desktop
|
||||||
@libreoffice
|
@libreoffice
|
||||||
@networkmanager-submodules
|
|
||||||
|
|
||||||
# FIXME; apparently the glibc maintainers dislike this, but it got put into the
|
# FIXME; apparently the glibc maintainers dislike this, but it got put into the
|
||||||
# desktop image at some point. We won't touch this one for now.
|
# desktop image at some point. We won't touch this one for now.
|
||||||
@@ -21,4 +20,12 @@ nss-mdns
|
|||||||
# https://lists.fedoraproject.org/pipermail/devel/2013-July/186796.html
|
# https://lists.fedoraproject.org/pipermail/devel/2013-July/186796.html
|
||||||
-rsyslog
|
-rsyslog
|
||||||
|
|
||||||
|
# Remove a few apps that are being presented as featured apps in
|
||||||
|
# gnome-software
|
||||||
|
-transmission-gtk
|
||||||
|
-simple-scan
|
||||||
|
-gnome-photos
|
||||||
|
-gnome-maps
|
||||||
|
-gnome-weather
|
||||||
|
|
||||||
%end
|
%end
|
||||||
|
|||||||
20
fedora-i386-cloud.ks
Normal file
20
fedora-i386-cloud.ks
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
%include fedora-cloud-base.ks
|
||||||
|
|
||||||
|
# Package list.
|
||||||
|
%packages
|
||||||
|
kernel-PAE
|
||||||
|
|
||||||
|
%end
|
||||||
|
%post
|
||||||
|
if [ ! -e /etc/sysconfig/kernel ]; then
|
||||||
|
echo "Creating /etc/sysconfig/kernel."
|
||||||
|
cat <<EOF > /etc/sysconfig/kernel
|
||||||
|
# UPDATEDEFAULT specifies if new-kernel-pkg should make
|
||||||
|
# new kernels the default
|
||||||
|
UPDATEDEFAULT=yes
|
||||||
|
|
||||||
|
# DEFAULTKERNEL specifies the default kernel package type
|
||||||
|
DEFAULTKERNEL=kernel-PAE
|
||||||
|
EOF
|
||||||
|
fi
|
||||||
|
%end
|
||||||
@@ -1,99 +0,0 @@
|
|||||||
# Kickstart file for composing the "Fedora" spin of Fedora (rawhide)
|
|
||||||
# Maintained by the Fedora Release Engineering team:
|
|
||||||
# https://fedoraproject.org/wiki/ReleaseEngineering
|
|
||||||
# mailto:rel-eng@lists.fedoraproject.org
|
|
||||||
|
|
||||||
# Use a part of 'iso' to define how large you want your isos.
|
|
||||||
# Only used when composing to more than one iso.
|
|
||||||
# Default is 695 (megs), CD size.
|
|
||||||
# Listed below is the size of a DVD if you wanted to split higher.
|
|
||||||
#part iso --size=4998
|
|
||||||
|
|
||||||
# Add the repos you wish to use to compose here. At least one of them needs group data.
|
|
||||||
|
|
||||||
# Only uncomment repo commands in one of the two following sections.
|
|
||||||
# Because the install kickstart doesn't use the updates repo and does
|
|
||||||
# use the source repo, we can't just include fedora-repo.ks
|
|
||||||
|
|
||||||
# In the master branch the rawhide repo commands should be uncommented.
|
|
||||||
#repo --name=rawhide --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=rawhide&arch=$basearch
|
|
||||||
#repo --name=rawhide-source --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=rawhide-source&arch=$basearch
|
|
||||||
|
|
||||||
# In non-master branches the fedora repo commands should be uncommented
|
|
||||||
repo --name=fedora --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=fedora-$releasever&arch=$basearch
|
|
||||||
repo --name=fedora-source --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=fedora-source-$releasever&arch=$basearch
|
|
||||||
|
|
||||||
# Package manifest for the compose. Uses repo group metadata to translate groups.
|
|
||||||
# (default groups for the configured repos are added by --default)
|
|
||||||
# @base got renamed to @standard, but @base is still included by default by pungi.
|
|
||||||
%packages --default
|
|
||||||
|
|
||||||
# pungi is an inclusive depsolver so that multiple packages are brought
|
|
||||||
# in to satisify dependencies and we don't always want that. So we use
|
|
||||||
# an exclusion list to cut out things we don't want
|
|
||||||
|
|
||||||
-kernel*debug*
|
|
||||||
-kernel-kdump*
|
|
||||||
-kernel-tools*
|
|
||||||
-syslog-ng*
|
|
||||||
-astronomy-bookmarks
|
|
||||||
-generic*
|
|
||||||
-GConf2-dbus*
|
|
||||||
-bluez-gnome
|
|
||||||
# Periods cause problems in paterns, so replace with *s
|
|
||||||
-java-1*8*0-openjdk
|
|
||||||
-community-mysql*
|
|
||||||
-jruby*
|
|
||||||
|
|
||||||
# core
|
|
||||||
kernel*
|
|
||||||
dracut-*
|
|
||||||
|
|
||||||
# Desktops
|
|
||||||
|
|
||||||
## common stuff
|
|
||||||
@base-x
|
|
||||||
@guest-desktop-agents
|
|
||||||
@guest-agents
|
|
||||||
@standard
|
|
||||||
@core
|
|
||||||
@dial-up
|
|
||||||
@fonts
|
|
||||||
@input-methods
|
|
||||||
@multimedia
|
|
||||||
@hardware-support
|
|
||||||
@printing
|
|
||||||
@admin-tools
|
|
||||||
@basic-desktop
|
|
||||||
|
|
||||||
|
|
||||||
@virtualization
|
|
||||||
@web-server
|
|
||||||
@mongodb
|
|
||||||
@perl-web
|
|
||||||
@php
|
|
||||||
@python-web
|
|
||||||
@rubyonrails
|
|
||||||
@mysql
|
|
||||||
@sql-server
|
|
||||||
@javaenterprise
|
|
||||||
|
|
||||||
# Things needed for installation
|
|
||||||
@anaconda-tools
|
|
||||||
|
|
||||||
# Langpacks
|
|
||||||
autocorr-*
|
|
||||||
eclipse-nls-*
|
|
||||||
hunspell-*
|
|
||||||
hyphen-*
|
|
||||||
calligra-l10n-*
|
|
||||||
kde-l10n-*
|
|
||||||
libreoffice-langpack-*
|
|
||||||
man-pages-*
|
|
||||||
mythes-*
|
|
||||||
-gimp-help-*
|
|
||||||
|
|
||||||
# Removals
|
|
||||||
-PackageKit-zif
|
|
||||||
-zif
|
|
||||||
%end
|
|
||||||
@@ -26,7 +26,7 @@ repo --name=fedora-source --mirrorlist=http://mirrors.fedoraproject.org/mirrorl
|
|||||||
# Package manifest for the compose. Uses repo group metadata to translate groups.
|
# Package manifest for the compose. Uses repo group metadata to translate groups.
|
||||||
# (default groups for the configured repos are added by --default)
|
# (default groups for the configured repos are added by --default)
|
||||||
# @base got renamed to @standard, but @base is still included by default by pungi.
|
# @base got renamed to @standard, but @base is still included by default by pungi.
|
||||||
%packages --default
|
%packages --default --nobase
|
||||||
|
|
||||||
# pungi is an inclusive depsolver so that multiple packages are brought
|
# pungi is an inclusive depsolver so that multiple packages are brought
|
||||||
# in to satisify dependencies and we don't always want that. So we use
|
# in to satisify dependencies and we don't always want that. So we use
|
||||||
@@ -124,7 +124,7 @@ dracut-*
|
|||||||
@sql-server
|
@sql-server
|
||||||
@design-suite
|
@design-suite
|
||||||
## Not included yet due to space concerns
|
## Not included yet due to space concerns
|
||||||
#@javaenterprise
|
#@jbossas
|
||||||
#@milkymist
|
#@milkymist
|
||||||
#@mingw32
|
#@mingw32
|
||||||
#@ocaml
|
#@ocaml
|
||||||
@@ -1,128 +0,0 @@
|
|||||||
# Kickstart file for composing the "Fedora" spin of Fedora (rawhide)
|
|
||||||
# Maintained by the Fedora Release Engineering team:
|
|
||||||
# https://fedoraproject.org/wiki/ReleaseEngineering
|
|
||||||
# mailto:rel-eng@lists.fedoraproject.org
|
|
||||||
|
|
||||||
# Use a part of 'iso' to define how large you want your isos.
|
|
||||||
# Only used when composing to more than one iso.
|
|
||||||
# Default is 695 (megs), CD size.
|
|
||||||
# Listed below is the size of a DVD if you wanted to split higher.
|
|
||||||
#part iso --size=4998
|
|
||||||
|
|
||||||
# Add the repos you wish to use to compose here. At least one of them needs group data.
|
|
||||||
|
|
||||||
# Only uncomment repo commands in one of the two following sections.
|
|
||||||
# Because the install kickstart doesn't use the updates repo and does
|
|
||||||
# use the source repo, we can't just include fedora-repo.ks
|
|
||||||
|
|
||||||
# In the master branch the rawhide repo commands should be uncommented.
|
|
||||||
#repo --name=rawhide --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=rawhide&arch=$basearch
|
|
||||||
#repo --name=rawhide-source --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=rawhide-source&arch=$basearch
|
|
||||||
|
|
||||||
# In non-master branches the fedora repo commands should be uncommented
|
|
||||||
repo --name=fedora --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=fedora-$releasever&arch=$basearch
|
|
||||||
repo --name=fedora-source --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=fedora-source-$releasever&arch=$basearch
|
|
||||||
|
|
||||||
# Package manifest for the compose. Uses repo group metadata to translate groups.
|
|
||||||
# (default groups for the configured repos are added by --default)
|
|
||||||
# @base got renamed to @standard, but @base is still included by default by pungi.
|
|
||||||
%packages --default
|
|
||||||
|
|
||||||
# pungi is an inclusive depsolver so that multiple packages are brought
|
|
||||||
# in to satisify dependencies and we don't always want that. So we use
|
|
||||||
# an exclusion list to cut out things we don't want
|
|
||||||
|
|
||||||
-kernel*debug*
|
|
||||||
-kernel-kdump*
|
|
||||||
-kernel-tools*
|
|
||||||
-syslog-ng*
|
|
||||||
-astronomy-bookmarks
|
|
||||||
-generic-logos*
|
|
||||||
-generic-release*
|
|
||||||
-GConf2-dbus*
|
|
||||||
-bluez-gnome
|
|
||||||
-community-mysql*
|
|
||||||
|
|
||||||
# core
|
|
||||||
kernel*
|
|
||||||
dracut-*
|
|
||||||
|
|
||||||
# No desktops
|
|
||||||
-cinnamon*
|
|
||||||
-enlightenment*
|
|
||||||
-gnome-shell
|
|
||||||
-gnome-session
|
|
||||||
-kde*
|
|
||||||
-lightdm-kde
|
|
||||||
-lightdm-razorqt
|
|
||||||
# Pulls in qt
|
|
||||||
-oprofile-gui
|
|
||||||
|
|
||||||
-@legacy-fonts
|
|
||||||
|
|
||||||
|
|
||||||
## common stuff
|
|
||||||
@guest-agents
|
|
||||||
@standard
|
|
||||||
@core
|
|
||||||
@multimedia
|
|
||||||
@hardware-support
|
|
||||||
|
|
||||||
# Workstation
|
|
||||||
@development-libs
|
|
||||||
@development-tools
|
|
||||||
@c-development
|
|
||||||
@rpm-development-tools
|
|
||||||
@fedora-packager
|
|
||||||
|
|
||||||
# Common server packages
|
|
||||||
@mysql
|
|
||||||
@sql-server
|
|
||||||
@web-server
|
|
||||||
|
|
||||||
# Web Server environment
|
|
||||||
@haproxy
|
|
||||||
@mongodb
|
|
||||||
@perl-web
|
|
||||||
@python-web
|
|
||||||
@php
|
|
||||||
@rubyonrails
|
|
||||||
@tomcat
|
|
||||||
|
|
||||||
# Infrastructure Server
|
|
||||||
@directory-server
|
|
||||||
@dogtag
|
|
||||||
@dns-server
|
|
||||||
@freeipa-server
|
|
||||||
@ftp-server
|
|
||||||
@mail-server
|
|
||||||
@network-server
|
|
||||||
@printing
|
|
||||||
@smb-server
|
|
||||||
@virtualization
|
|
||||||
@load-balancer
|
|
||||||
@ha
|
|
||||||
|
|
||||||
@container-management
|
|
||||||
@headless-management
|
|
||||||
@javaenterprise
|
|
||||||
|
|
||||||
# “uservisible” groups we want to offer
|
|
||||||
@editors
|
|
||||||
@network-server
|
|
||||||
@system-tools
|
|
||||||
@text-internet
|
|
||||||
|
|
||||||
# Things needed for installation
|
|
||||||
@anaconda-tools
|
|
||||||
|
|
||||||
# Langpacks
|
|
||||||
autocorr-*
|
|
||||||
hunspell-*
|
|
||||||
man-pages-*
|
|
||||||
-gimp-help-*
|
|
||||||
|
|
||||||
# Removals
|
|
||||||
-PackageKit-zif
|
|
||||||
-zif
|
|
||||||
%end
|
|
||||||
@@ -3,11 +3,14 @@
|
|||||||
@kde-desktop
|
@kde-desktop
|
||||||
@kde-media
|
@kde-media
|
||||||
@kde-telepathy
|
@kde-telepathy
|
||||||
@networkmanager-submodules
|
|
||||||
|
|
||||||
### The KDE-Desktop
|
### The KDE-Desktop
|
||||||
|
|
||||||
### fixes
|
### fixes
|
||||||
|
# sddm->kdm, (temporary) so don't have to wait on comps changes
|
||||||
|
-sddm
|
||||||
|
-sddm-kcm
|
||||||
|
kdm
|
||||||
|
|
||||||
# use kde-print-manager instead of system-config-printer
|
# use kde-print-manager instead of system-config-printer
|
||||||
-system-config-printer
|
-system-config-printer
|
||||||
|
|||||||
@@ -193,7 +193,7 @@ systemctl stop mdmonitor.service 2> /dev/null || :
|
|||||||
systemctl stop mdmonitor-takeover.service 2> /dev/null || :
|
systemctl stop mdmonitor-takeover.service 2> /dev/null || :
|
||||||
|
|
||||||
# don't enable the gnome-settings-daemon packagekit plugin
|
# don't enable the gnome-settings-daemon packagekit plugin
|
||||||
gsettings set org.gnome.software download-updates 'false' || :
|
gsettings set org.gnome.settings-daemon.plugins.updates active 'false' || :
|
||||||
|
|
||||||
# don't start cron/at as they tend to spawn things which are
|
# don't start cron/at as they tend to spawn things which are
|
||||||
# disk intensive that are painful on a live image
|
# disk intensive that are painful on a live image
|
||||||
@@ -280,7 +280,7 @@ systemctl enable tmp.mount
|
|||||||
|
|
||||||
# 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' --whatprovides system-release)
|
releasever=$(rpm -q --qf '%{version}\n' fedora-release)
|
||||||
basearch=$(uname -i)
|
basearch=$(uname -i)
|
||||||
rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-fedora-$releasever-$basearch
|
rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-fedora-$releasever-$basearch
|
||||||
echo "Packages within this LiveCD"
|
echo "Packages within this LiveCD"
|
||||||
|
|||||||
@@ -31,8 +31,8 @@ gimp-gap
|
|||||||
gimp-paint-studio
|
gimp-paint-studio
|
||||||
gimp-high-pass-filter
|
gimp-high-pass-filter
|
||||||
gimp-normalmap
|
gimp-normalmap
|
||||||
|
gimp-paint-studio
|
||||||
gimp-resynthesizer
|
gimp-resynthesizer
|
||||||
gimp-separate+
|
|
||||||
gpick
|
gpick
|
||||||
GREYCstoration-gimp
|
GREYCstoration-gimp
|
||||||
hugin
|
hugin
|
||||||
@@ -59,6 +59,10 @@ filezilla
|
|||||||
audacity
|
audacity
|
||||||
pitivi
|
pitivi
|
||||||
|
|
||||||
|
# system
|
||||||
|
# gtk-recordmydesktop # dropped for space (#887991)
|
||||||
|
# network-manager-applet #part of Gnome Desktop
|
||||||
|
|
||||||
# fonts
|
# fonts
|
||||||
aajohan-comfortaa-fonts
|
aajohan-comfortaa-fonts
|
||||||
adobe-source-sans-pro-fonts
|
adobe-source-sans-pro-fonts
|
||||||
@@ -100,17 +104,30 @@ overpass-fonts
|
|||||||
#Override the favorite desktop application in Dash
|
#Override the favorite desktop application in Dash
|
||||||
cat >> /usr/share/glib-2.0/schemas/org.gnome.shell.gschema.override << FOE
|
cat >> /usr/share/glib-2.0/schemas/org.gnome.shell.gschema.override << FOE
|
||||||
[org.gnome.shell]
|
[org.gnome.shell]
|
||||||
favorite-apps=['firefox.desktop', 'evolution.desktop', 'shotwell.desktop', 'gimp.desktop', 'inkscape.desktop', 'blender.desktop', 'libreoffice-writer.desktop', 'scribus.desktop', 'nautilus.desktop', 'bijiben.desktop', 'anaconda.desktop', 'list-design-tutorials.desktop']
|
favorite-apps=['firefox.desktop', 'evolution.desktop', 'shotwell.desktop', 'gimp.desktop', 'inkscape.desktop', 'blender.desktop', 'libreoffice-writer.desktop', 'scribus.desktop', 'nautilus.desktop', 'bijiben.desktop', 'anaconda.desktop','list-design-tutorials.desktop']
|
||||||
#Enable categories in Gnome Shell
|
#Enable categories in Gnome Shell
|
||||||
app-folder-categories=['Utilities', 'Games', 'Sundry', 'Office', 'Network', 'Internet', 'Graphics', 'Multimedia', 'System', 'Development', 'Accessories', 'System Settings', 'wine-wine', 'Crossover', 'Crossover Games', 'Science', 'Education', 'Universal Access', 'Other']
|
app-folder-categories=['Utilities', 'Sundry', 'Office', 'Network', 'Internet', 'Graphics', 'Games', 'Multimedia', 'System', 'Development', 'Accessories', 'System Settings', 'Other']
|
||||||
FOE
|
FOE
|
||||||
|
|
||||||
|
# Add link to the Inkscape Course
|
||||||
|
#cat >> /usr/share/applications/inkscape-course.desktop << FOE
|
||||||
|
#[Desktop Entry]
|
||||||
|
#Name=Introduction To Inkscape
|
||||||
|
#GenericName=Inkscape Course
|
||||||
|
#Comment=Materials from Máirín Duffy's Inkscape Class
|
||||||
|
#Exec=xdg-open http://linuxgrrl.com/learn/Introduction_To_Inkscape
|
||||||
|
#Type=Application
|
||||||
|
#Icon=fedora-logo-icon
|
||||||
|
#Categories=Graphics;Documentation;
|
||||||
|
#FOE
|
||||||
|
#chmod a+x /usr/share/applications/inkscape-course.desktop
|
||||||
|
|
||||||
# Add link to lists of tutorials
|
# Add link to lists of tutorials
|
||||||
cat >> /usr/share/applications/list-design-tutorials.desktop << FOE
|
cat >> /usr/share/applications/list-design-tutorials.desktop << FOE
|
||||||
[Desktop Entry]
|
[Desktop Entry]
|
||||||
Name=List of design tutorials
|
Name=List of Design Tutorials
|
||||||
GenericName=List of Tutorials for Designers
|
GenericName=List of design tutorials
|
||||||
Comment=Reference of Design Related Tutorials
|
Comment=Reference of graphic and web design related tutorials
|
||||||
Exec=xdg-open http://fedoraproject.org/wiki/Design_Suite/Tutorials
|
Exec=xdg-open http://fedoraproject.org/wiki/Design_Suite/Tutorials
|
||||||
Type=Application
|
Type=Application
|
||||||
Icon=applications-graphics
|
Icon=applications-graphics
|
||||||
|
|||||||
@@ -12,9 +12,9 @@ cat >> /etc/rc.d/init.d/livesys << EOF
|
|||||||
|
|
||||||
|
|
||||||
# disable updates plugin
|
# disable updates plugin
|
||||||
cat >> /usr/share/glib-2.0/schemas/org.gnome.software.gschema.override << FOE
|
cat >> /usr/share/glib-2.0/schemas/org.gnome.settings-daemon.plugins.updates.gschema.override << FOE
|
||||||
[org.gnome.software]
|
[org.gnome.settings-daemon.plugins.updates]
|
||||||
download-updates=false
|
active=false
|
||||||
FOE
|
FOE
|
||||||
|
|
||||||
# don't run gnome-initial-setup
|
# don't run gnome-initial-setup
|
||||||
|
|||||||
@@ -40,11 +40,12 @@ chmod a+x /home/liveuser/.xsession
|
|||||||
chown liveuser:liveuser /home/liveuser/.xsession
|
chown liveuser:liveuser /home/liveuser/.xsession
|
||||||
|
|
||||||
# set up autologin for user liveuser
|
# set up autologin for user liveuser
|
||||||
sed -i 's/^AutoUser=.*/AutoUser=liveuser/' /etc/sddm.conf
|
sed -i 's/#AutoLoginEnable=true/AutoLoginEnable=true/' /etc/kde/kdm/kdmrc
|
||||||
|
sed -i 's/#AutoLoginUser=fred/AutoLoginUser=liveuser/' /etc/kde/kdm/kdmrc
|
||||||
|
|
||||||
# set up user liveuser as default user and preselected user
|
# set up user liveuser as default user and preselected user
|
||||||
sed -i 's/^LastUser=.*/LastUser=liveuser/' /etc/sddm.conf
|
sed -i 's/#PreselectUser=Default/PreselectUser=Default/' /etc/kde/kdm/kdmrc
|
||||||
sed -i 's/^LastSession=.*/LastSession=kde-plasma.desktop/' /etc/sddm.conf
|
sed -i 's/#DefaultUser=johndoe/DefaultUser=liveuser/' /etc/kde/kdm/kdmrc
|
||||||
|
|
||||||
# add liveinst.desktop to favorites menu
|
# add liveinst.desktop to favorites menu
|
||||||
mkdir -p /home/liveuser/.kde/share/config/
|
mkdir -p /home/liveuser/.kde/share/config/
|
||||||
@@ -90,12 +91,6 @@ cat > /home/liveuser/.kde/share/config/kdedrc << KDEDRC_EOF
|
|||||||
autoload=false
|
autoload=false
|
||||||
KDEDRC_EOF
|
KDEDRC_EOF
|
||||||
|
|
||||||
# Disable baloo
|
|
||||||
cat > /home/liveuser/.kde/share/config/baloofilerc << BALOO_EOF
|
|
||||||
[Basic Settings]
|
|
||||||
Indexing-Enabled=false
|
|
||||||
BALOO_EOF
|
|
||||||
|
|
||||||
# Disable kres-migrator
|
# Disable kres-migrator
|
||||||
cat > /home/liveuser/.kde/share/config/kres-migratorrc << KRES_EOF
|
cat > /home/liveuser/.kde/share/config/kres-migratorrc << KRES_EOF
|
||||||
[Migration]
|
[Migration]
|
||||||
|
|||||||
@@ -15,6 +15,11 @@
|
|||||||
-coolkey
|
-coolkey
|
||||||
-wget
|
-wget
|
||||||
|
|
||||||
|
# qlogic firmwares
|
||||||
|
-ql2100-firmware
|
||||||
|
-ql2200-firmware
|
||||||
|
-ql23xx-firmware
|
||||||
|
|
||||||
# scanning takes quite a bit of space :/
|
# scanning takes quite a bit of space :/
|
||||||
-xsane
|
-xsane
|
||||||
-xsane-gimp
|
-xsane-gimp
|
||||||
|
|||||||
@@ -1,69 +0,0 @@
|
|||||||
# Maintained by the Fedora Workstation WG:
|
|
||||||
# http://fedoraproject.org/wiki/Workstation
|
|
||||||
# mailto:desktop@lists.fedoraproject.org
|
|
||||||
|
|
||||||
%include fedora-live-base.ks
|
|
||||||
%include fedora-workstation-packages.ks
|
|
||||||
|
|
||||||
part / --size 6144
|
|
||||||
|
|
||||||
%post
|
|
||||||
|
|
||||||
# This is a huge file and things work ok without it
|
|
||||||
rm -f /usr/share/icons/HighContrast/icon-theme.cache
|
|
||||||
|
|
||||||
cat >> /etc/rc.d/init.d/livesys << EOF
|
|
||||||
|
|
||||||
|
|
||||||
# disable updates plugin
|
|
||||||
cat >> /usr/share/glib-2.0/schemas/org.gnome.software.gschema.override << FOE
|
|
||||||
[org.gnome.software]
|
|
||||||
download-updates=false
|
|
||||||
FOE
|
|
||||||
|
|
||||||
# don't run gnome-initial-setup
|
|
||||||
mkdir ~liveuser/.config
|
|
||||||
touch ~liveuser/.config/gnome-initial-setup-done
|
|
||||||
|
|
||||||
# make the installer show up
|
|
||||||
if [ -f /usr/share/applications/liveinst.desktop ]; then
|
|
||||||
# Show harddisk install in shell dash
|
|
||||||
sed -i -e 's/NoDisplay=true/NoDisplay=false/' /usr/share/applications/liveinst.desktop ""
|
|
||||||
# need to move it to anaconda.desktop to make shell happy
|
|
||||||
mv /usr/share/applications/liveinst.desktop /usr/share/applications/anaconda.desktop
|
|
||||||
|
|
||||||
cat >> /usr/share/glib-2.0/schemas/org.gnome.shell.gschema.override << FOE
|
|
||||||
[org.gnome.shell]
|
|
||||||
favorite-apps=['firefox.desktop', 'evolution.desktop', 'empathy.desktop', 'rhythmbox.desktop', 'shotwell.desktop', 'libreoffice-writer.desktop', 'nautilus.desktop', 'gnome-documents.desktop', 'anaconda.desktop']
|
|
||||||
FOE
|
|
||||||
|
|
||||||
# Make the welcome screen show up
|
|
||||||
if [ -f /usr/share/anaconda/gnome/fedora-welcome.desktop ]; then
|
|
||||||
mkdir -p ~liveuser/.config/autostart
|
|
||||||
cp /usr/share/anaconda/gnome/fedora-welcome.desktop /usr/share/applications/
|
|
||||||
cp /usr/share/anaconda/gnome/fedora-welcome.desktop ~liveuser/.config/autostart/
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
# rebuild schema cache with any overrides we installed
|
|
||||||
glib-compile-schemas /usr/share/glib-2.0/schemas
|
|
||||||
|
|
||||||
# set up auto-login
|
|
||||||
cat > /etc/gdm/custom.conf << FOE
|
|
||||||
[daemon]
|
|
||||||
AutomaticLoginEnable=True
|
|
||||||
AutomaticLogin=liveuser
|
|
||||||
FOE
|
|
||||||
|
|
||||||
# Turn off PackageKit-command-not-found while uninstalled
|
|
||||||
if [ -f /etc/PackageKit/CommandNotFound.conf ]; then
|
|
||||||
sed -i -e 's/^SoftwareSourceSearch=true/SoftwareSourceSearch=false/' /etc/PackageKit/CommandNotFound.conf
|
|
||||||
fi
|
|
||||||
|
|
||||||
# make sure to set the right permissions and selinux contexts
|
|
||||||
chown -R liveuser:liveuser /home/liveuser/
|
|
||||||
restorecon -R /home/liveuser/
|
|
||||||
|
|
||||||
EOF
|
|
||||||
|
|
||||||
%end
|
|
||||||
@@ -25,6 +25,7 @@
|
|||||||
|
|
||||||
# Drop the Java plugin
|
# Drop the Java plugin
|
||||||
-icedtea-web
|
-icedtea-web
|
||||||
|
-java-1.7.0-openjdk
|
||||||
-java-1.8.0-openjdk
|
-java-1.8.0-openjdk
|
||||||
|
|
||||||
# Drop things that pull in perl
|
# Drop things that pull in perl
|
||||||
@@ -79,6 +80,7 @@
|
|||||||
-dump
|
-dump
|
||||||
|
|
||||||
# Drop some system-config things
|
# Drop some system-config things
|
||||||
|
-system-config-boot
|
||||||
-system-config-language
|
-system-config-language
|
||||||
-system-config-rootpassword
|
-system-config-rootpassword
|
||||||
-system-config-services
|
-system-config-services
|
||||||
|
|||||||
@@ -11,33 +11,15 @@
|
|||||||
-planner
|
-planner
|
||||||
|
|
||||||
# Drop things for size
|
# Drop things for size
|
||||||
-@3d-printing
|
|
||||||
-brasero
|
|
||||||
-bluez
|
|
||||||
-bluez-cups
|
|
||||||
-@dial-up
|
|
||||||
-dnf
|
|
||||||
-firefox
|
-firefox
|
||||||
-gnome-bluetooth-libs
|
|
||||||
-gnome-icon-theme-symbolic
|
|
||||||
-gnome-software
|
|
||||||
-gnome-user-docs
|
|
||||||
-@guest-desktop-agents
|
|
||||||
-@libreoffice
|
-@libreoffice
|
||||||
-@mate-applications
|
|
||||||
-mate-bluetooth
|
|
||||||
-mate-icon-theme-faenza
|
|
||||||
-transmission-gtk
|
|
||||||
|
|
||||||
# Drop oversized fonts that aren't needed
|
|
||||||
-cjkuni-uming-fonts
|
|
||||||
-wqy-zenhei-fonts
|
|
||||||
|
|
||||||
# A web browser would be nice for a live cd
|
# A web browser would be nice for a live cd
|
||||||
midori
|
midori
|
||||||
|
|
||||||
# Drop the Java plugin
|
# Drop the Java plugin
|
||||||
-icedtea-web
|
-icedtea-web
|
||||||
|
-java-1.7.0-openjdk
|
||||||
-java-1.8.0-openjdk
|
-java-1.8.0-openjdk
|
||||||
|
|
||||||
# Drop things that pull in perl
|
# Drop things that pull in perl
|
||||||
@@ -83,8 +65,8 @@ midori
|
|||||||
-ntsysv
|
-ntsysv
|
||||||
|
|
||||||
# Drop some system-config things
|
# Drop some system-config things
|
||||||
|
-system-config-boot
|
||||||
-system-config-language
|
-system-config-language
|
||||||
-system-config-printer
|
|
||||||
-system-config-rootpassword
|
-system-config-rootpassword
|
||||||
-system-config-services
|
-system-config-services
|
||||||
-policycoreutils-gui
|
-policycoreutils-gui
|
||||||
@@ -96,3 +78,4 @@ midori
|
|||||||
rm -f /usr/share/icons/HighContrast/icon-theme.cache
|
rm -f /usr/share/icons/HighContrast/icon-theme.cache
|
||||||
|
|
||||||
%end
|
%end
|
||||||
|
|
||||||
|
|||||||
@@ -24,14 +24,15 @@ part / --size 10240
|
|||||||
%packages
|
%packages
|
||||||
@xfce-desktop
|
@xfce-desktop
|
||||||
@xfce-apps
|
@xfce-apps
|
||||||
|
#@xfce-extra-plugins
|
||||||
|
#@xfce-media
|
||||||
|
#@xfce-office
|
||||||
|
#@firefox
|
||||||
|
|
||||||
# Security tools
|
# Security tools (not ready at the moment)
|
||||||
@security-lab
|
@security-lab
|
||||||
security-menus
|
security-menus
|
||||||
|
|
||||||
# unlock default keyring. FIXME: Should probably be done in comps
|
|
||||||
gnome-keyring-pam
|
|
||||||
|
|
||||||
# save some space
|
# save some space
|
||||||
-autofs
|
-autofs
|
||||||
-acpid
|
-acpid
|
||||||
@@ -40,16 +41,13 @@ gnome-keyring-pam
|
|||||||
-realmd # only seems to be used in GNOME
|
-realmd # only seems to be used in GNOME
|
||||||
-PackageKit* # we switched to yumex, so we don't need this
|
-PackageKit* # we switched to yumex, so we don't need this
|
||||||
-aspell-* # dictionaries are big
|
-aspell-* # dictionaries are big
|
||||||
-gnumeric
|
|
||||||
-foomatic-db-ppds
|
|
||||||
-foomatic
|
|
||||||
-stix-fonts
|
|
||||||
-ibus-typing-booster
|
|
||||||
-xfce4-sensors-plugin
|
|
||||||
-man-pages-*
|
-man-pages-*
|
||||||
|
|
||||||
# drop some system-config things
|
# drop some system-config things
|
||||||
|
-system-config-boot
|
||||||
|
#-system-config-network
|
||||||
-system-config-rootpassword
|
-system-config-rootpassword
|
||||||
|
#-system-config-services
|
||||||
-policycoreutils-gui
|
-policycoreutils-gui
|
||||||
|
|
||||||
# exclude some packages to save some space
|
# exclude some packages to save some space
|
||||||
@@ -76,6 +74,9 @@ gnome-keyring-pam
|
|||||||
-pads
|
-pads
|
||||||
-pdfcrack
|
-pdfcrack
|
||||||
-picviz-gui
|
-picviz-gui
|
||||||
|
-prelude-lml
|
||||||
|
-prelude-manager
|
||||||
|
-prewikka
|
||||||
-proxychains
|
-proxychains
|
||||||
-pyrit
|
-pyrit
|
||||||
-raddump
|
-raddump
|
||||||
@@ -83,15 +84,13 @@ gnome-keyring-pam
|
|||||||
-safecopy
|
-safecopy
|
||||||
-samdump2
|
-samdump2
|
||||||
-scalpel
|
-scalpel
|
||||||
|
-sshscan
|
||||||
-sslstrip
|
-sslstrip
|
||||||
-tcpreen
|
-tcpreen
|
||||||
-tcpreplay
|
-tcpreplay
|
||||||
-tripwire
|
-tripwire
|
||||||
-wipe
|
-wipe
|
||||||
|
|
||||||
# Is not available for OpenVAS-7. No longer supported by upstream.
|
|
||||||
-openvas-client
|
|
||||||
|
|
||||||
%end
|
%end
|
||||||
|
|
||||||
%post
|
%post
|
||||||
|
|||||||
@@ -26,8 +26,8 @@ rm -f /var/lib/rpm/__db*
|
|||||||
|
|
||||||
# Get proper release naming in the control panel
|
# Get proper release naming in the control panel
|
||||||
cat >> /boot/olpc_build << EOF
|
cat >> /boot/olpc_build << EOF
|
||||||
Sugar on a Stick 11 (Unknown)
|
Sugar on a Stick 10
|
||||||
Fedora release 21 (Rawhide)
|
Fedora release 20 (Heisenbug)
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
# Add our activities to the favorites
|
# Add our activities to the favorites
|
||||||
|
|||||||
@@ -91,7 +91,6 @@ lordsawar
|
|||||||
lure
|
lure
|
||||||
machineball
|
machineball
|
||||||
nethack
|
nethack
|
||||||
openlierox
|
|
||||||
pachi
|
pachi
|
||||||
pioneers
|
pioneers
|
||||||
quarry
|
quarry
|
||||||
@@ -150,7 +149,6 @@ pingus
|
|||||||
# puzzles (small)
|
# puzzles (small)
|
||||||
|
|
||||||
escape
|
escape
|
||||||
gbrainy
|
|
||||||
magicor
|
magicor
|
||||||
mirrormagic
|
mirrormagic
|
||||||
pipenightdreams
|
pipenightdreams
|
||||||
|
|||||||
@@ -78,6 +78,7 @@ firefox
|
|||||||
-ntsysv
|
-ntsysv
|
||||||
|
|
||||||
# Drop some system-config things
|
# Drop some system-config things
|
||||||
|
-system-config-boot
|
||||||
-system-config-language
|
-system-config-language
|
||||||
-system-config-network
|
-system-config-network
|
||||||
-system-config-rootpassword
|
-system-config-rootpassword
|
||||||
@@ -102,9 +103,9 @@ disable-lock-screen=true
|
|||||||
FOE
|
FOE
|
||||||
|
|
||||||
# disable updates plugin
|
# disable updates plugin
|
||||||
cat >> /usr/share/glib-2.0/schemas/org.gnome.software.gschema.override << FOE
|
cat >> /usr/share/glib-2.0/schemas/org.gnome.settings-daemon.plugins.updates.gschema.override << FOE
|
||||||
[org.gnome.software]
|
[org.gnome.settings-daemon.plugins.updates]
|
||||||
download-updates=false
|
active=false
|
||||||
FOE
|
FOE
|
||||||
|
|
||||||
# make the installer show up
|
# make the installer show up
|
||||||
|
|||||||
@@ -27,8 +27,8 @@ scilab-doc
|
|||||||
|
|
||||||
# sagemath
|
# sagemath
|
||||||
# BZ #1006230 should fix this
|
# BZ #1006230 should fix this
|
||||||
#sagemath
|
sagemath
|
||||||
#sagemath-notebook
|
sagemath-notebook
|
||||||
|
|
||||||
#Devel tools
|
#Devel tools
|
||||||
|
|
||||||
|
|||||||
@@ -12,7 +12,6 @@
|
|||||||
@lxde-apps
|
@lxde-apps
|
||||||
@lxde-media
|
@lxde-media
|
||||||
@lxde-office
|
@lxde-office
|
||||||
@networkmanager-submodules
|
|
||||||
|
|
||||||
# FIXME: can be omitted once comps is updated
|
# FIXME: can be omitted once comps is updated
|
||||||
midori
|
midori
|
||||||
@@ -53,6 +52,7 @@ metacity
|
|||||||
#-wqy-zenhei-fonts # FIXME: Workaround to save space, do this in comps
|
#-wqy-zenhei-fonts # FIXME: Workaround to save space, do this in comps
|
||||||
|
|
||||||
# drop some system-config things
|
# drop some system-config things
|
||||||
|
-system-config-boot
|
||||||
#-system-config-language
|
#-system-config-language
|
||||||
-system-config-network
|
-system-config-network
|
||||||
-system-config-rootpassword
|
-system-config-rootpassword
|
||||||
|
|||||||
@@ -1,8 +1,6 @@
|
|||||||
%packages
|
%packages
|
||||||
-realmd # only seems to be used in GNOME
|
-realmd # only seems to be used in GNOME
|
||||||
-PackageKit* # we switched to yumex, so we don't need this
|
-PackageKit* # we switched to yumex, so we don't need this
|
||||||
-ConsoleKit # ConsoleKit is deprecated
|
|
||||||
-ConsoleKit-x11 # ConsoleKit is deprecated
|
|
||||||
firefox
|
firefox
|
||||||
@mate
|
@mate
|
||||||
compiz
|
compiz
|
||||||
@@ -21,7 +19,6 @@ emerald
|
|||||||
fusion-icon
|
fusion-icon
|
||||||
fusion-icon-gtk
|
fusion-icon-gtk
|
||||||
@libreoffice
|
@libreoffice
|
||||||
@networkmanager-submodules
|
|
||||||
|
|
||||||
# FIXME; apparently the glibc maintainers dislike this, but it got put into the
|
# FIXME; apparently the glibc maintainers dislike this, but it got put into the
|
||||||
# desktop image at some point. We won't touch this one for now.
|
# desktop image at some point. We won't touch this one for now.
|
||||||
|
|||||||
@@ -41,9 +41,6 @@ lightdm-gtk
|
|||||||
# enable for testing in the F17 dev cycle
|
# enable for testing in the F17 dev cycle
|
||||||
@input-methods
|
@input-methods
|
||||||
|
|
||||||
# Needed for wifi, bluetooth and WWAN connection support
|
|
||||||
@networkmanager-submodules
|
|
||||||
|
|
||||||
# == Platform Components ==
|
# == Platform Components ==
|
||||||
# from http://wiki.sugarlabs.org/go/0.94/Platform_Components
|
# from http://wiki.sugarlabs.org/go/0.94/Platform_Components
|
||||||
alsa-plugins-pulseaudio
|
alsa-plugins-pulseaudio
|
||||||
|
|||||||
@@ -1,70 +0,0 @@
|
|||||||
%packages
|
|
||||||
@firefox
|
|
||||||
@gnome-desktop
|
|
||||||
@libreoffice
|
|
||||||
@networkmanager-submodules
|
|
||||||
|
|
||||||
#QT
|
|
||||||
qt
|
|
||||||
qt-settings
|
|
||||||
qt-x11
|
|
||||||
qt5-qtbase
|
|
||||||
qt5-qtbase-gui
|
|
||||||
qt5-qtdeclarative
|
|
||||||
qt5-qtxmlpatterns
|
|
||||||
|
|
||||||
devassistant
|
|
||||||
scl-utils
|
|
||||||
|
|
||||||
# FIXME; apparently the glibc maintainers dislike this, but it got put into the
|
|
||||||
# desktop image at some point. We won't touch this one for now.
|
|
||||||
nss-mdns
|
|
||||||
|
|
||||||
# This one needs to be kicked out of @standard
|
|
||||||
-smartmontools
|
|
||||||
|
|
||||||
# We use gnome-control-center's printer and input sources panels instead
|
|
||||||
-system-config-printer
|
|
||||||
-im-chooser
|
|
||||||
|
|
||||||
-aisleriot
|
|
||||||
-baobab
|
|
||||||
-biosdevname
|
|
||||||
-coolkey
|
|
||||||
-deja-dup
|
|
||||||
-dtc
|
|
||||||
-dump
|
|
||||||
-ed
|
|
||||||
-finger
|
|
||||||
-ftp
|
|
||||||
-gc
|
|
||||||
-gfs2-utils
|
|
||||||
-gnu-free-fonts-common
|
|
||||||
-gnu-free-mono-fonts
|
|
||||||
-gnu-free-sans-fonts
|
|
||||||
-gnu-free-serif-fonts
|
|
||||||
-gtk2-immodule-xim
|
|
||||||
-gtk3-immodule-xim
|
|
||||||
-gtkmm24
|
|
||||||
-guile
|
|
||||||
-imsettings*
|
|
||||||
-irda-utils
|
|
||||||
-irqbalance
|
|
||||||
-isdn4k-utils
|
|
||||||
-kernel-modules-extra
|
|
||||||
-lftp
|
|
||||||
-linux-atm
|
|
||||||
-minicom
|
|
||||||
-nano
|
|
||||||
-ntsysv
|
|
||||||
-numactl
|
|
||||||
-reiserfs-utils
|
|
||||||
-rsh
|
|
||||||
-tagsoup
|
|
||||||
-talk
|
|
||||||
-telnet
|
|
||||||
-uboot-tools
|
|
||||||
-xl2tpd
|
|
||||||
-NetworkManager-l2tp
|
|
||||||
|
|
||||||
%end
|
|
||||||
18
fedora-x86_64-cloud.ks
Normal file
18
fedora-x86_64-cloud.ks
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
%include fedora-cloud-base.ks
|
||||||
|
|
||||||
|
%packages
|
||||||
|
kernel
|
||||||
|
%end
|
||||||
|
|
||||||
|
%post
|
||||||
|
if [ ! -e /etc/sysconfig/kernel ]; then
|
||||||
|
echo "Creating /etc/sysconfig/kernel."
|
||||||
|
cat <<EOF > /etc/sysconfig/kernel
|
||||||
|
# UPDATEDEFAULT specifies if new-kernel-pkg should make
|
||||||
|
# new kernels the default
|
||||||
|
UPDATEDEFAULT=yes
|
||||||
|
|
||||||
|
# DEFAULTKERNEL specifies the default kernel package type
|
||||||
|
DEFAULTKERNEL=kernel
|
||||||
|
EOF
|
||||||
|
fi
|
||||||
@@ -12,7 +12,6 @@
|
|||||||
|
|
||||||
%packages
|
%packages
|
||||||
|
|
||||||
@networkmanager-submodules
|
|
||||||
@xfce-desktop
|
@xfce-desktop
|
||||||
@xfce-apps
|
@xfce-apps
|
||||||
@xfce-extra-plugins
|
@xfce-extra-plugins
|
||||||
@@ -39,6 +38,7 @@ gnome-keyring-pam
|
|||||||
#-man-pages-*
|
#-man-pages-*
|
||||||
|
|
||||||
# drop some system-config things
|
# drop some system-config things
|
||||||
|
-system-config-boot
|
||||||
-system-config-network
|
-system-config-network
|
||||||
-system-config-rootpassword
|
-system-config-rootpassword
|
||||||
#-system-config-services
|
#-system-config-services
|
||||||
|
|||||||
Reference in New Issue
Block a user