This is an automated email from the git hooks/post-receive script.
kevin pushed a change to branch f25 in repository fedora-kickstarts.
from 4fc84a7 manipulate network service in %post (#1369794) new d37a1e4 drop rsyslog service from all cloud kickstarts
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: fedora-cloud-base.ks | 2 +- fedora-cloud-bigdata.ks | 2 +- fedora-cloud-experimental.ks | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-)
This is an automated email from the git hooks/post-receive script.
kevin pushed a commit to branch f25 in repository fedora-kickstarts.
commit d37a1e462256d5b29da2373c215ea266dfc40a03 Author: Adam Williamson awilliam@redhat.com Date: Wed Aug 24 11:11:01 2016 -0700
drop rsyslog service from all cloud kickstarts
it's no longer pulled in by cloud-init (since 2014...). None of these kickstarts has it in %packages, and it's not in any of the cloud environment or package groups in comps either. So it seems like no-one particularly wants rsyslog in the cloud images.
From compose logs, it looks like trying to enable a non-existent service in anaconda in Fedora 24 and earlier wasn't a fatal error (anaconda more or less logged a warning and continued), but in Fedora 25 and later it does seem to be fatal. It at least causes one anaconda thread to crash, though the image compose completes. I think possibly at least the way anaconda's run in the Cloud compose process, the main thread manages to exit, but it seems pretty likely the thread crash will result in problems in the produced image.
Needed on master and f25. --- fedora-cloud-base.ks | 2 +- fedora-cloud-bigdata.ks | 2 +- fedora-cloud-experimental.ks | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/fedora-cloud-base.ks b/fedora-cloud-base.ks index a7546f0..98aea1e 100644 --- a/fedora-cloud-base.ks +++ b/fedora-cloud-base.ks @@ -39,7 +39,7 @@ firewall --disabled bootloader --timeout=1 --append="no_timer_check console=tty1 console=ttyS0,115200n8" --extlinux
network --bootproto=dhcp --device=link --activate --onboot=on -services --enabled=sshd,rsyslog,cloud-init,cloud-init-local,cloud-config,cloud-final +services --enabled=sshd,cloud-init,cloud-init-local,cloud-config,cloud-final
zerombr clearpart --all diff --git a/fedora-cloud-bigdata.ks b/fedora-cloud-bigdata.ks index 9e3d4c1..d2bd24d 100644 --- a/fedora-cloud-bigdata.ks +++ b/fedora-cloud-bigdata.ks @@ -26,7 +26,7 @@ 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=sshd,rsyslog,cloud-init,cloud-init-local,cloud-config,cloud-final +services --enabled=sshd,cloud-init,cloud-init-local,cloud-config,cloud-final
zerombr clearpart --all diff --git a/fedora-cloud-experimental.ks b/fedora-cloud-experimental.ks index 85dca8d..5e2b615 100644 --- a/fedora-cloud-experimental.ks +++ b/fedora-cloud-experimental.ks @@ -17,7 +17,7 @@ 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=sshd,rsyslog,cloud-init,cloud-init-local,cloud-config,cloud-final +services --enabled=sshd,cloud-init,cloud-init-local,cloud-config,cloud-final
zerombr clearpart --all