scripts dutchification - batch 1

This commit is contained in:
bergware
2023-10-02 13:48:44 +02:00
parent 9a31659b5a
commit 5b3ad58384
+7 -2
View File
@@ -29,8 +29,13 @@ create_xconsole(){
rsyslogd_start(){
log "Starting $DAEMON..."
[[ -x /usr/sbin/rsyslogd ]] && run /usr/sbin/rsyslogd -i $PIDFILE
log "$DAEMON... Started."
if [[ -x /usr/sbin/rsyslogd ]]; then
run /usr/sbin/rsyslogd -i $PIDFILE
REPLY="Started"
else
REPLY="Missing executable"
fi
log "$DAEMON... $REPLY."
}
rsyslogd_stop(){