From 4f4fe63125e76ef53056e10b5266ea993963b6fc Mon Sep 17 00:00:00 2001 From: Benjamin Berg Date: Wed, 7 Mar 2018 16:18:48 +0100 Subject: [PATCH] live-base: Disable abrtd on live systems Grabbing coredumps on live systems is not a good idea. Either there is no persistent storage, or it will be really slow and also small. So disable abrtd and stop it in the same way as other services. --- fedora-live-base.ks | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/fedora-live-base.ks b/fedora-live-base.ks index 4ba967d..045fa17 100644 --- a/fedora-live-base.ks +++ b/fedora-live-base.ks @@ -206,6 +206,10 @@ systemctl --no-reload disable atd.service 2> /dev/null || : systemctl stop crond.service 2> /dev/null || : systemctl stop atd.service 2> /dev/null || : +# turn off abrtd on a live image +systemctl --no-reload disable abrtd.service 2> /dev/null || : +systemctl stop abrtd.service 2> /dev/null || : + # Don't sync the system clock when running live (RHBZ #1018162) sed -i 's/rtcsync//' /etc/chrony.conf