head	1.2;
access;
symbols;
locks; strict;
comment	@# @;


1.2
date	2001.09.06.02.37.59;	author woodchip;	state dead;
branches;
next	1.1;

1.1
date	2001.07.24.21.21.54;	author blocke;	state Exp;
branches;
next	;


desc
@@


1.2
log
@added rc6 version
@
text
@#!/bin/sh
#RCUPDATE:1 2 3 4 5:19:This line is required for script management

. /etc/rc.d/config/functions
. /etc/rc.d/config/basic

SERVICE=syslog-ng
opts="start stop"

start() {
    ebegin "Starting syslog-ng"
    start-stop-daemon --start --exec /usr/sbin/syslog-ng -- 1>&2
    retval=$?
    eend $retval 
}

stop() {
    ebegin "Stopping syslog-ng"
    start-stop-daemon --stop --pidfile /var/run/syslog-ng.pid 1>&2
    retval=$?
    eend $retval 
}

doservice ${@@}



@


1.1
log
@Adding Syslog-Ng... Committed into app-admin for now and can be moved into sys-apps later if we decide to use it by default
@
text
@@

