summaryrefslogtreecommitdiffstats
path: root/etc/rc.subr
diff options
context:
space:
mode:
Diffstat (limited to 'etc/rc.subr')
-rw-r--r--etc/rc.subr16
1 files changed, 15 insertions, 1 deletions
diff --git a/etc/rc.subr b/etc/rc.subr
index ae0aaa6..d2b178d 100644
--- a/etc/rc.subr
+++ b/etc/rc.subr
@@ -814,8 +814,22 @@ load_rc_config()
debug "Sourcing /etc/rc.conf.d/${_command}"
. /etc/rc.conf.d/"$_command"
fi
-}
+ # XXX - Deprecated variable name support
+ #
+ case `${CMD_OSTYPE}` in
+ FreeBSD)
+ [ -n "$portmap_enable" ] && rpcbind_enable="$portmap_enable"
+ [ -n "$portmap_program" ] && rpcbind_program="$portmap_program"
+ [ -n "$portmap_flags" ] && rpcbind_flags="$portmap_flags"
+ [ -n "$single_mountd_enable" ] && mountd_enable="$single_mountd_enable"
+ [ -n "$xntpd_enable" ] && ntpd_enable="$xntpd_enable"
+ [ -n "$xntpd_program" ] && ntpd_program="$xntpd_program"
+ [ -n "$xntpd_flags" ] && ntpd_flags="$xntpd_flags"
+ ;;
+ esac
+
+}
#
# rc_usage commands
OpenPOWER on IntegriCloud