#!/bin/sh
. /opt/lsb/test/core/syslogd/sbin/detect_syslogd

detect_logd
if [ "$LOGD" = "unknown" ];then
  echo "cannot determine system syslogd..."
  exit 1
else
  ps -p $PID -o args= > /opt/lsb/test/core/syslogd/var/run/syslogd.options
fi
