diff options
author | Cy Schubert <cy@FreeBSD.org> | 2009-12-21 23:28:42 +0000 |
---|---|---|
committer | Cy Schubert <cy@FreeBSD.org> | 2009-12-21 23:28:42 +0000 |
commit | 0290fbcedf4eaf1e51eeaaa8573c02803d0a5ec4 (patch) | |
tree | 801990c24e4e37524bd933dad94c3161b7acad16 /sysutils/cfengine3/files | |
parent | Fix build under FreeBSD 9.0-CURRENT. (diff) |
The startup scripts contain errors with confuse the shell. Fix them.
PR: 139078
Notes
Notes:
svn path=/head/; revision=246405
Diffstat (limited to 'sysutils/cfengine3/files')
-rw-r--r-- | sysutils/cfengine3/files/cf-execd.in | 4 | ||||
-rw-r--r-- | sysutils/cfengine3/files/cf-serverd.in | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sysutils/cfengine3/files/cf-execd.in b/sysutils/cfengine3/files/cf-execd.in index 08de22a6942c..6c4a47840d68 100644 --- a/sysutils/cfengine3/files/cf-execd.in +++ b/sysutils/cfengine3/files/cf-execd.in @@ -17,13 +17,13 @@ . %%RC_SUBR%% -name="cf-execd" +name="cf_execd" rcvar=${name}_enable command="%%PREFIX%%/sbin/${name}" load_rc_config $name -: ${cf-execd_enable="NO"} +: ${cf_execd_enable="NO"} run_rc_command "$1" diff --git a/sysutils/cfengine3/files/cf-serverd.in b/sysutils/cfengine3/files/cf-serverd.in index 486208804e8b..d84b25960dd1 100644 --- a/sysutils/cfengine3/files/cf-serverd.in +++ b/sysutils/cfengine3/files/cf-serverd.in @@ -17,13 +17,13 @@ . %%RC_SUBR%% -name="cf-serverd" +name="cf_serverd" rcvar=${name}_enable command="%%PREFIX%%/sbin/${name}" load_rc_config $name -: ${cf-serverd_enable="NO"} +: ${cf_serverd_enable="NO"} run_rc_command "$1" |