diff options
author | jlam <jlam@pkgsrc.org> | 2017-10-24 14:07:59 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2017-10-24 14:07:59 +0000 |
commit | 967c5c82d8eed5537063a5c390b651de84635519 (patch) | |
tree | 07f21451f97c70fbc1c2353f0648253b536586b1 /pkgtools | |
parent | fe7e5b3ef8cb58443d4164a68c6c8dfdd03a4af4 (diff) | |
download | pkgsrc-967c5c82d8eed5537063a5c390b651de84635519.tar.gz |
rc.subr: Fix SERVERS rc.d script to not REQUIRE mountcritremote.
The distributed rc.d scripts are "barrier" scripts that are used
by other rc.d scripts to hook into different points of the startup
process by either using REQUIRE or BEFORE. The barrier scripts
should not depend on other, non-barrier scripts. This change makes
the distributed scripts usable by a simple "rcorder /etc/rc.d/*",
whereas it was failing before due to lack of "mountcritremote".
Bump the package version to 20171024.
Diffstat (limited to 'pkgtools')
-rw-r--r-- | pkgtools/rc.subr/Makefile | 4 | ||||
-rwxr-xr-x | pkgtools/rc.subr/files/rc.d/SERVERS | 3 |
2 files changed, 3 insertions, 4 deletions
diff --git a/pkgtools/rc.subr/Makefile b/pkgtools/rc.subr/Makefile index 5ce0ddc6c2c..9aca6e14275 100644 --- a/pkgtools/rc.subr/Makefile +++ b/pkgtools/rc.subr/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.30 2016/10/17 01:11:30 dholland Exp $ +# $NetBSD: Makefile,v 1.31 2017/10/24 14:07:59 jlam Exp $ # -PKGNAME= rc.subr-20161016 +PKGNAME= rc.subr-20171024 CATEGORIES= pkgtools MAINTAINER= sbd@NetBSD.org diff --git a/pkgtools/rc.subr/files/rc.d/SERVERS b/pkgtools/rc.subr/files/rc.d/SERVERS index b202dd95cca..dbf2041985d 100755 --- a/pkgtools/rc.subr/files/rc.d/SERVERS +++ b/pkgtools/rc.subr/files/rc.d/SERVERS @@ -1,10 +1,9 @@ #!/bin/sh # -# $NetBSD: SERVERS,v 1.1.1.1 2003/06/19 16:07:12 grant Exp $ +# $NetBSD: SERVERS,v 1.2 2017/10/24 14:07:59 jlam Exp $ # # PROVIDE: SERVERS -# REQUIRE: mountcritremote # This is a dummy dependency, for early-start servers relying on # some basic configuration. |