My actual problem is other: I want somehow debug program (ISC bind daemon) crashes. And I'm trying to figure out why abrt doesn't create a crashdump in /var/spool/abrt/ directory after I install the debuginfo package - although it did before...
I had an idea that some limits for systemd-coredump might need to be increased. But I'm surprised and I can't explain why the configuration files of the systemd daemon are completely missing in the system - those under the /etd/systemd/ directory (system.conf, user.conf, logind.conf, journald.conf, etc.}. Under /etd/systemd/ I have only network, system and user subdirs, but no ordinal file - although in packages these should be:
# rpm -ql systemd|grep -E '/etc/systemd/[^/]+.conf$' /etc/systemd/journald.conf /etc/systemd/logind.conf /etc/systemd/system.conf /etc/systemd/user.conf
and is weird, the systemd package verification will take place without errors (as if those .conf files are optional?!):
# rpm -V systemd; echo "RES=$?" RES=0
The verbose verification lists them as missing, but the rpm exit status is also 0: # rpm -Vv systemd|grep -E '/etc/systemd/[^/]+.conf$' missing c /etc/systemd/journald.conf missing c /etc/systemd/logind.conf missing c /etc/systemd/system.conf missing c /etc/systemd/user.conf
Does anyone know why those systemd configuration files got lost after system installation? I couldn't find any explanation for this...