mirror of
git://git.yoctoproject.org/poky.git
synced 2025-07-19 21:09:03 +02:00

one test case to check syslogd is executing on target. (From OE-Core rev: 9286ea7a4eb85ba559d48135458f3b94da7a3866) Signed-off-by: veerabrahmam <veerabrahmamvr@huawei.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
18 lines
344 B
Bash
18 lines
344 B
Bash
#!/bin/bash
|
|
# syslog test script running in qemu
|
|
#
|
|
# Author: veera <veerabrahmamvr@huawei.com>
|
|
#
|
|
# This file is licensed under the GNU General Public License,
|
|
# Version 2.
|
|
#
|
|
|
|
ps aux | grep -w syslogd | grep -v grep
|
|
if [ $? -eq 0 ]; then
|
|
echo "QEMU: syslogd is running by default"
|
|
exit 0
|
|
else
|
|
echo "QEMU: syslogd is not running"
|
|
exit 1
|
|
fi
|