forked from sig_core/toolkit
10 lines
255 B
Bash
10 lines
255 B
Bash
|
#!/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 $?
|