#!/bin/bash

# remove stale syslog pid
if [[ -f /var/run/rsyslogd.pid ]]; then
    rm -f /var/run/rsyslogd.pid
    echo "removed stale syslog pid"
fi
