commit de0eb89f62f57a51bc78cb28d59f18063a5eb48d
parent a222ced2d7a664ea4c6908ad05057699f87a8bb5
Author: Frederic Cambus <fred@statdns.com>
Date: Wed, 23 Nov 2022 23:31:56 +0100
Remove the FreeBSD rc.d script and its installation instructions.
It's been unmaintained and untested for years at this point.
Diffstat:
2 files changed, 0 insertions(+), 27 deletions(-)
diff --git a/README.md b/README.md
@@ -63,17 +63,6 @@ To launch the daemon at startup, run:
systemctl enable rrda
-### FreeBSD rc.d script
-
-RRDA is bundled with a FreeBSD rc.d script, see: `freebsd/rrda`
-
-Copy the `freebsd/rrda` file in `/usr/local/etc/rc.d` and the RRDA binary in
-`/usr/local/sbin`.
-
-To launch the daemon at startup, add the following line in `/etc/rc.conf`:
-
- rrda_enable="YES"
-
## Making Queries
The following examples assume there is a resolver on localhost listening on port 53.
diff --git a/freebsd/rrda b/freebsd/rrda
@@ -1,16 +0,0 @@
-#!/bin/sh
-#
-# PROVIDE: rrda
-# REQUIRE: DAEMON
-
-. /etc/rc.subr
-
-name=rrda
-rcvar=rrda_enable
-
-command="/usr/local/sbin/${name}"
-
-start_cmd="/usr/sbin/daemon -f $command"
-
-load_rc_config $name
-run_rc_command "$1"