#53 drop rsyslog service from all cloud kickstarts
Merged 7 years ago by kevin. Opened 7 years ago by adamwill.
adamwill/fedora-kickstarts cloud-norsyslog  into  master

file modified
+1 -1
@@ -39,7 +39,7 @@ 

  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

file modified
+1 -1
@@ -26,7 +26,7 @@ 

  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

file modified
+1 -1
@@ -17,7 +17,7 @@ 

  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

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.

Pull-Request has been merged by kevin

7 years ago