blob: 42ea3df6e226572eb8cb9e28bb917ca4deafef6e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/sbin/openrc-run
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
extra_commands="condrestart"
description_condrestart="Restart the service only if started already"
command="/usr/sbin/${SVCNAME}"
command_args="${OPTIONS}"
pidfile=/var/run/$SVCNAME.pid
depend() {
need localmount
use logger
}
condrestart() {
service_started && restart
}
|