put experimental cloud spin back to same as base cloud spin exept for i18n/docs

This commit is contained in:
Matthew Miller 2014-07-11 11:54:19 -04:00
parent d7ab22af4f
commit bee1c037a1
1 changed files with 13 additions and 6 deletions

View File

@ -19,7 +19,6 @@ bootloader --timeout=1 --append="no_timer_check console=tty1 console=ttyS0,11520
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=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 3000 --fstype ext4
@ -55,13 +54,13 @@ dracut-config-generic
syslinux-extlinux syslinux-extlinux
# Needed initially, but removed below.
firewalld
# cherry-pick a few things from @standard # cherry-pick a few things from @standard
tar tar
rsync rsync
# anaconda needs authconfig to be installed into the image to setup some things
authconfig
# Some things from @core we can do without in a minimal install # Some things from @core we can do without in a minimal install
-biosdevname -biosdevname
-plymouth -plymouth
@ -70,9 +69,7 @@ authconfig
-kbd -kbd
-uboot-tools -uboot-tools
-kernel -kernel
-firewalld
-grub2 -grub2
-man-db
%end %end
@ -119,10 +116,20 @@ rm -f /etc/systemd/system/default.target
ln -s /lib/systemd/system/multi-user.target /etc/systemd/system/default.target ln -s /lib/systemd/system/multi-user.target /etc/systemd/system/default.target
echo . 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 # this is installed by default but we don't need it in virt
echo "Removing linux-firmware package." echo "Removing linux-firmware package."
yum -C -y remove linux-firmware 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 # Another one needed at install time but not after that, and it pulls
# in some unneeded deps (like, newt and slang) # in some unneeded deps (like, newt and slang)
echo "Removing authconfig." echo "Removing authconfig."