summaryrefslogtreecommitdiffstats
path: root/scripts/qemuimage-tests/tools/syslog.sh
blob: 9154da3b851fb08e949024811e4877d21e403091 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/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