blob: ef890c3047132a999da2bdb073529d50d959febd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/sbin/runscript
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/mwlib/files/postman.initd,v 1.1 2013/07/01 13:56:29 dev-zero Exp $
description="postman uploads zip collections to pediapress in case someone likes to order printed books"
command="/usr/bin/postman"
command_args="--cachedir=${POSTMAN_CACHDIR}"
pidfile="/var/run/${SVCNAME}.pid"
command_background="yes"
start_stop_daemon_args="--user ${POSTMAN_USER:-mwlib} \
--group ${POSTMAN_GROUP:-mwlib} \
${POSTMAN_LOGFILE:+--stderr ${POSTMAN_LOGFILE}} \
${POSTMAN_LOGFILE:+--stdout ${POSTMAN_LOGFILE}}"
depend() {
need net localmount
}
|