diff options
author | clsung <clsung@FreeBSD.org> | 2011-03-05 09:48:11 +0800 |
---|---|---|
committer | clsung <clsung@FreeBSD.org> | 2011-03-05 09:48:11 +0800 |
commit | e7fe88f25b6fbc52fb61c0f8d391550230a7c94c (patch) | |
tree | 3fb61838c7c00c753c2bca9444579748b63e465d /sysutils | |
parent | ac8771affe722d718484f6cc2b68c1ce76d771f8 (diff) | |
download | freebsd-ports-gnome-e7fe88f25b6fbc52fb61c0f8d391550230a7c94c.tar.gz freebsd-ports-gnome-e7fe88f25b6fbc52fb61c0f8d391550230a7c94c.tar.zst freebsd-ports-gnome-e7fe88f25b6fbc52fb61c0f8d391550230a7c94c.zip |
- The %%RC_SUBR%% variable in the rc script source files/chef_client.in isn't getting replaced by default. Rather than adding this variable to SUB_LIST, it makes more sense to explicitly replace it in the source file itself. This is done in numerous other rc script source files as well as in the example in the Porter's Handbook.
- bump PORTREVISION
PR: ports/155279
Submitted by: Dimitri Aivaliotis <aglarond_AT_gmail dot com>
Approved by: maintainer (Renaud Chaput)
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/rubygem-chef/Makefile | 1 | ||||
-rw-r--r-- | sysutils/rubygem-chef/files/chef_client.in | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/sysutils/rubygem-chef/Makefile b/sysutils/rubygem-chef/Makefile index 88a987c8708f..9c9cbfee2536 100644 --- a/sysutils/rubygem-chef/Makefile +++ b/sysutils/rubygem-chef/Makefile @@ -7,6 +7,7 @@ PORTNAME= chef PORTVERSION= 0.9.12 +PORTREVISION= 1 CATEGORIES= sysutils MASTER_SITES= RG diff --git a/sysutils/rubygem-chef/files/chef_client.in b/sysutils/rubygem-chef/files/chef_client.in index 2991fa131b14..924b666cb119 100644 --- a/sysutils/rubygem-chef/files/chef_client.in +++ b/sysutils/rubygem-chef/files/chef_client.in @@ -12,7 +12,7 @@ # # chef_client_enable="YES" -. %%RC_SUBR%% +. /etc/rc.subr name="chef_client" rcvar=`set_rcvar` |