1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-24 04:33:24 +00:00

Change rc.d file to ensure proper startup order:

- depend on named, in case dnsmasq uses named as resolver
- start before ntpdate and rpcbase (which require named).

Bump PORTREVISION.
This commit is contained in:
Matthias Andree 2011-02-22 17:19:28 +00:00
parent 1f96a89e2d
commit 85662e5623
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=269506
2 changed files with 13 additions and 3 deletions

View File

@ -7,6 +7,7 @@
PORTNAME= dnsmasq
PORTVERSION= 2.57
PORTREVISION= 1
PORTEPOCH= 1
CATEGORIES= dns ipv6
MASTER_SITES= http://www.thekelleys.org.uk/dnsmasq/ \

View File

@ -1,10 +1,19 @@
#! /bin/sh
#
# PROVIDE: named dnsmasq
# REQUIRE: SERVERS cleanvar
# BEFORE: DAEMON
# PROVIDE: dnsmasq
# REQUIRE: SERVERS named
# BEFORE: DAEMON ntpdate rpcbind
# KEYWORD: shutdown
#
# The BEFORE: line above contains individual services that have a
# REQUIRE: named line, to make sure dnsmasq starts early enough
# for those, in case dnsmasq is listed in /etc/resolv.conf.
#
# The REQUIRE: named above is for configurations where named
# acts as a resolver, and dnsmasq is used to "blend in" local
# domain names.
#
#
# Add the following line to /etc/rc.conf.local or /etc/rc.conf
# to enable this service:
#