mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-17 08:01:36 +00:00
83eb2c3700
literal name_enable wherever possible, and ${name}_enable when it's not, to prepare for the demise of set_rcvar(). In cases where I had to hand-edit unusual instances also modify formatting slightly to be more uniform (and in some cases, correct). This includes adding some $FreeBSD$ tags, and most importantly moving rcvar= to right after name= so it's clear that one is derived from the other.
16 lines
408 B
Plaintext
16 lines
408 B
Plaintext
--- samples/rc.d-kinkd.in.orig 2005-10-28 15:33:16.000000000 +0900
|
|
+++ samples/rc.d-kinkd.in 2008-04-17 15:11:55.000000000 +0900
|
|
@@ -14,10 +14,10 @@
|
|
exec_prefix=@exec_prefix@
|
|
|
|
name="kinkd"
|
|
-rcvar=$name
|
|
+rcvar=kinkd_enable
|
|
command="@sbindir@/${name}"
|
|
extra_commands="reload"
|
|
-required_vars="spmd"
|
|
+required_vars="spmd_enable"
|
|
pidfile="/var/run/${name}.pid"
|
|
required_files="@sysconfdir@/racoon2.conf"
|
|
|