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


1.1
date	2005.06.24.13.52.18;	author liquidx;	state Exp;
branches
	1.1.1.1;
next	;

1.1.1.1
date	2005.11.30.10.00.16;	author chriswhite;	state Exp;
branches;
next	;


desc
@@


1.1
log
@added init script. thanks to Radek Podgorny (#79034)
(Portage version: 2.0.51.22-r1)
@
text
@#!/sbin/runscript
#
# chkconfig: - 91 35
# description: Starts and stops the ulog-acctd daemon

# We should add "pause" and "resume" actions - Radek Podgorny
#opts="${opts} pause resume"


depend() {
	need net
}


start() {
	ebegin "Starting ulog-acctd"
	start-stop-daemon --start --quiet --exec /usr/sbin/ulog-acctd >/dev/null 2>&1
	eend $?
}	

stop() {
	ebegin "Stopping ulog-acctdd"
	start-stop-daemon --stop --quiet --exec /usr/sbin/ulog-acctd >/dev/null 2>&1
	eend $?
}	
@


1.1.1.1
log
@*** empty log message ***
@
text
@@

