Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 161775 Details for
Bug 233419
New Ebuild: app-admin/inoticoming-0.2.1
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
app-admin/inoticoming/files/inoticoming.initd
inoticoming.initd (text/plain), 1.00 KB, created by
Mario Fetka (geos_one)
on 2008-07-30 20:17:40 UTC
(
hide
)
Description:
app-admin/inoticoming/files/inoticoming.initd
Filename:
MIME Type:
Creator:
Mario Fetka (geos_one)
Created:
2008-07-30 20:17:40 UTC
Size:
1.00 KB
patch
obsolete
>#!/sbin/runscript > >DAEMON=/usr/bin/inoticoming >PIDFILE=/var/run/inoticoming.pid > >depend() { > use net > after logger >} > >checkconfig() { > if [ ! -d "$DIR" ] ; then > eerror "Incoming $DIR has not been configured." > eend 1 > return 1 > fi >} > >start() { > checkconfig || return 1 > ebegin "Starting incoming queue monitor" > # make sure inoticoming can write the PID to $PIDFILE > [ -f $PIDFILE ] || touch $PIDFILE > chown $USER $PIDFILE > OPTIONS="--pid-file $PIDFILE" > > # make sure inoticoming can write to $LOGFILE > if [ -n $LOGFILE ] ; then > [ -f $LOGFILE ] || touch $LOGFILE > chown $USER $LOGFILE > OPTIONS="$OPTIONS --logfile $LOGFILE" > fi > > # should we do an initial search of the directory? > [ "$INITIALSEARCH" != "0" ] && OPTIONS="$OPTIONS --initialsearch" > > start-stop-daemon --start --quiet --pidfile $PIDFILE --exec $DAEMON --chuid $USER -- \ > $OPTIONS $DIR $ACTIONS > eend $? >} > >stop() { > checkconfig || return 1 > ebegin "Stopping incoming queue monitor" > start-stop-daemon --stop --quiet --pidfile $PIDFILE > eend $? >}
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 233419
:
161773
|
161774
| 161775 |
161815