Import of pkgsrc-2015Q1

This commit is contained in:
2016-01-21 23:40:00 +01:00
committed by sambuc
parent 9a8c06dafb
commit 4af1cdf7a9
25114 changed files with 870539 additions and 795424 deletions
+2 -1
View File
@@ -1,6 +1,6 @@
#!@RCD_SCRIPTS_SHELL@
#
# $NetBSD: nmbd.sh,v 1.10 2005/11/14 08:05:27 jlam Exp $
# $NetBSD: nmbd.sh,v 1.11 2015/01/23 08:09:37 obache Exp $
#
# PROVIDE: nmbd
# REQUIRE: DAEMON
@@ -10,6 +10,7 @@
name="nmbd"
rcvar=$name
command="@PREFIX@/sbin/${name}"
pidfile="@SAMBA_PIDDIR@/${name}.pid"
required_files="@SAMBA_ETCDIR@/smb.conf"
extra_commands="reload"
command_args="-D" # _must_ start as daemon from rc.d;
+2 -1
View File
@@ -1,6 +1,6 @@
#!@RCD_SCRIPTS_SHELL@
#
# $NetBSD: smbd.sh,v 1.13 2011/01/27 07:55:39 adam Exp $
# $NetBSD: smbd.sh,v 1.14 2015/01/23 08:09:37 obache Exp $
#
# PROVIDE: smbd
@@ -9,6 +9,7 @@
name="smbd"
rcvar=$name
command="@PREFIX@/sbin/${name}"
pidfile="@SAMBA_PIDDIR@/${name}.pid"
required_files="@SAMBA_ETCDIR@/smb.conf"
extra_commands="reload"
command_args="-D" # _must_ start as daemon from rc.d;
+42
View File
@@ -0,0 +1,42 @@
<?xml version="1.0"?>
<!DOCTYPE service_bundle SYSTEM "/usr/share/lib/xml/dtd/service_bundle.dtd.1">
<service_bundle type='manifest' name='@SMF_NAME@'>
<service name='@SMF_PREFIX@/@SMF_NAME@' type='service' version='1'>
<dependency name='fs-root' grouping='require_all' restart_on='none' type='service'>
<service_fmri value='svc:/system/filesystem/root' />
</dependency>
<dependency name='network-service' grouping='require_all' restart_on='none' type='service'>
<service_fmri value='svc:/network/service'/>
</dependency>
<instance name='smbd' enabled='false'>
<exec_method name='start' type='method' exec='@PREFIX@/sbin/smbd -D' timeout_seconds='0'/>
<exec_method name='stop' type='method' exec=':kill' timeout_seconds='30'/>
<exec_method name='refresh' type='method' exec=':kill -HUP' timeout_seconds='0'/>
<template>
<common_name>
<loctext xml:lang='C'>Samba SMB/CIFS services</loctext>
</common_name>
<documentation>
<manpage title='smbd' section='8' manpath='man'/>
</documentation>
</template>
</instance>
<instance name='nmbd' enabled='false'>
<exec_method name='start' type='method' exec='@PREFIX@/sbin/nmbd -D' timeout_seconds='0'/>
<exec_method name='stop' type='method' exec=':kill' timeout_seconds='30'/>
<exec_method name='refresh' type='method' exec=':kill -HUP' timeout_seconds='0'/>
<template>
<common_name>
<loctext xml:lang='C'>Samba NetBIOS name server</loctext>
</common_name>
<documentation>
<manpage title='nmbd' section='8' manpath='man'/>
</documentation>
</template>
</instance>
<stability value='Unstable'/>
</service>
</service_bundle>
+2 -1
View File
@@ -1,6 +1,6 @@
#!@RCD_SCRIPTS_SHELL@
#
# $NetBSD: winbindd.sh,v 1.5 2010/04/15 09:36:50 sborrill Exp $
# $NetBSD: winbindd.sh,v 1.6 2015/01/23 08:09:37 obache Exp $
#
# PROVIDE: winbindd
# REQUIRE: DAEMON
@@ -10,6 +10,7 @@
name="winbindd"
rcvar=$name
command="@PREFIX@/sbin/${name}"
pidfile="@SAMBA_PIDDIR@/${name}.pid"
required_files="@SAMBA_ETCDIR@/smb.conf"
extra_commands="reload"