basics.yml aktualisiert

This commit is contained in:
olli 2023-09-28 09:18:53 +02:00
parent f224912618
commit 7dc67f1678

View File

@ -565,22 +565,22 @@
if $programname contains 'g_bash-script' then /var/log/g_bash-scripts.log if $programname contains 'g_bash-script' then /var/log/g_bash-scripts.log
if $programname contains 'g_bash-script' then stop if $programname contains 'g_bash-script' then stop
# runchecks.sh # runchecks.sh
if $programname contains 'runchecks.sh' then /var/log/runchecks.sh.log if $programname == 'runchecks.sh' then /var/log/runchecks.sh.log
if $programname contains 'runchecks.sh' then stop if $programname == 'runchecks.sh' then stop
# signal-cli.sh # signal-cli.sh
if $programname contains 'signal-cli' then /var/log/signal-cli.log if $programname == 'signal-cli' then /var/log/signal-cli.log
if $programname contains 'signal-cli' then stop if $programname == 'signal-cli' then stop
# systemd # systemd
if $programname contains 'systemd' then /var/log/systemd.log if $programname contains 'systemd' then /var/log/systemd.log
if $programname contains 'systemd' then stop if $programname contains 'systemd' then stop
# kernel # kernel
if $programname contains 'kernel' then /var/log/kernel.log if $programname == 'kernel' then /var/log/kernel.log
if $programname contains 'kernel' then stop if $programname == 'kernel' then stop
# docker # docker
if $programname contains 'docker' then /var/log/docker.log if $programname == 'docker' then /var/log/docker.log
if $programname contains 'docker' then stop if $programname == 'docker' then stop
if $programname contains 'containerd' then /var/log/docker.log if $programname == 'containerd' then /var/log/docker.log
if $programname contains 'containerd' then stop if $programname == 'containerd' then stop
# Rest in messages # Rest in messages
*.* /var/log/messages *.* /var/log/messages
backup: yes backup: yes