Displaying 1 result from an estimated 1 matches for "dis_val".
Did you mean:
die_val
2007 Sep 02
0
handling rc.conf / freebsd init scripts
...!!!
#
hostname="<%= hostname %>"
ifconfig_<%= iface %>="<%= ifconfig %>"
defaultrouter="<%= defaultrouter %>"
<% rcvars_enabled.each do |en_val| -%>
<%= en_val %>_enable="YES"
<% end -%>
<% rcvars_disabled.each do |dis_val| -%>
<%= dis_val %>_enable="NO"
<% end -%>
and that''s pretty much it. one thing that still needs to be addressed is
the handling of non-enabled/disabled values in rc.conf (such as setting
flags and arguments to the daemon in question).
hope this is of help to...