blob: eba0e49a50a8810068a541ff980202e49fb8974e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/sbin/openrc-run
# Copyright 2016-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
description="Docker Volume Netshare plugin"
pidfile=${pidfile:-"/run/${SVCNAME}.pid"}
command="/usr/bin/docker-volume-netshare"
command_args="${command_args:nfs}"
command_background="true"
start_stop_daemon_args="--stdout /var/log/${SVCNAME}.log \
--stderr /var/log/${SVCNAME}.log"
|