toolkit/func/core/pkg_systemd/20-systemd-journald.sh

10 lines
255 B
Bash
Executable File

#!/bin/bash
r_log "systemd" "Testing journalctl with a teststring"
currentTime=$(date +'%T')
testString=01092deadbeef9915710501deadbeef6
echo "${testString}" > /dev/kmsg
journalctl --since "${currentTime}" | grep -q "${testString}"
r_checkExitStatus $?