diff options
author | dougb <dougb@FreeBSD.org> | 2010-03-27 08:15:24 +0800 |
---|---|---|
committer | dougb <dougb@FreeBSD.org> | 2010-03-27 08:15:24 +0800 |
commit | c95757bf8977796444544918518204869dc4cfb0 (patch) | |
tree | f74b156ca1cd409a2379581dbbc1d56c34d94a25 /emulators | |
parent | 1236f9731f8f6498ca2a039a20823973b1846ad4 (diff) | |
download | freebsd-ports-gnome-c95757bf8977796444544918518204869dc4cfb0.tar.gz freebsd-ports-gnome-c95757bf8977796444544918518204869dc4cfb0.tar.zst freebsd-ports-gnome-c95757bf8977796444544918518204869dc4cfb0.zip |
Begin the process of deprecating sysutils/rc_subr by
s#. %%RC_SUBR%%#. /etc/rc.subr#
Diffstat (limited to 'emulators')
8 files changed, 8 insertions, 8 deletions
diff --git a/emulators/open-vm-tools/files/vmware-guestd.sh.in b/emulators/open-vm-tools/files/vmware-guestd.sh.in index 5176e77a247f..08b77e5e3bed 100644 --- a/emulators/open-vm-tools/files/vmware-guestd.sh.in +++ b/emulators/open-vm-tools/files/vmware-guestd.sh.in @@ -7,7 +7,7 @@ # REQUIRE: DAEMON # BEFORE: LOGIN -. %%RC_SUBR%% +. /etc/rc.subr # Global checkvm_cmd="%%PREFIX%%/bin/vmware-checkvm > /dev/null" diff --git a/emulators/open-vm-tools/files/vmware-kmod.sh.in b/emulators/open-vm-tools/files/vmware-kmod.sh.in index 68f6cd630296..323f804979d7 100644 --- a/emulators/open-vm-tools/files/vmware-kmod.sh.in +++ b/emulators/open-vm-tools/files/vmware-kmod.sh.in @@ -7,7 +7,7 @@ # REQUIRE: FILESYSTEMS # BEFORE: netif -. %%RC_SUBR%% +. /etc/rc.subr # Global checkvm_cmd="%%PREFIX%%/bin/vmware-checkvm > /dev/null" diff --git a/emulators/virtualbox-ose-additions/files/vboxguest.in b/emulators/virtualbox-ose-additions/files/vboxguest.in index 08d1f6dbe3d7..702b83499763 100644 --- a/emulators/virtualbox-ose-additions/files/vboxguest.in +++ b/emulators/virtualbox-ose-additions/files/vboxguest.in @@ -15,7 +15,7 @@ # vboxguest_enable (bool): Set to NO by default. # Set it to YES to enable vboxguest on startup -. %%RC_SUBR%% +. /etc/rc.subr name="vboxguest" rcvar=${name}_enable diff --git a/emulators/virtualbox-ose-kmod-legacy/files/vboxnet.in b/emulators/virtualbox-ose-kmod-legacy/files/vboxnet.in index 69cb0e402521..17f079bd900c 100644 --- a/emulators/virtualbox-ose-kmod-legacy/files/vboxnet.in +++ b/emulators/virtualbox-ose-kmod-legacy/files/vboxnet.in @@ -15,7 +15,7 @@ # vboxnet_enable (bool): Set to NO by default. # Set it to YES to load network related kernel modules on startup -. %%RC_SUBR%% +. /etc/rc.subr name="vboxnet" rcvar=${name}_enable diff --git a/emulators/virtualbox-ose-kmod/files/vboxnet.in b/emulators/virtualbox-ose-kmod/files/vboxnet.in index 69cb0e402521..17f079bd900c 100644 --- a/emulators/virtualbox-ose-kmod/files/vboxnet.in +++ b/emulators/virtualbox-ose-kmod/files/vboxnet.in @@ -15,7 +15,7 @@ # vboxnet_enable (bool): Set to NO by default. # Set it to YES to load network related kernel modules on startup -. %%RC_SUBR%% +. /etc/rc.subr name="vboxnet" rcvar=${name}_enable diff --git a/emulators/vmware-guestd4/files/vmware-guestd.sh.in b/emulators/vmware-guestd4/files/vmware-guestd.sh.in index 4f5072ce1f41..8c9521ad98c6 100644 --- a/emulators/vmware-guestd4/files/vmware-guestd.sh.in +++ b/emulators/vmware-guestd4/files/vmware-guestd.sh.in @@ -8,7 +8,7 @@ # BEFORE: LOGIN PREFIX=%%PREFIX%% -. %%RC_SUBR%% +. /etc/rc.subr # Global checkvm_cmd="${PREFIX}/sbin/vmware-checkvm > /dev/null" diff --git a/emulators/vmware-guestd5/files/vmware-guestd.sh.in b/emulators/vmware-guestd5/files/vmware-guestd.sh.in index 158e88bf56bd..d66fccbc7892 100644 --- a/emulators/vmware-guestd5/files/vmware-guestd.sh.in +++ b/emulators/vmware-guestd5/files/vmware-guestd.sh.in @@ -8,7 +8,7 @@ # BEFORE: LOGIN PREFIX=%%PREFIX%% -. %%RC_SUBR%% +. /etc/rc.subr # Global checkvm_cmd="${PREFIX}/sbin/vmware-checkvm > /dev/null" diff --git a/emulators/vmware-guestd6/files/vmware-guestd.sh.in b/emulators/vmware-guestd6/files/vmware-guestd.sh.in index 158e88bf56bd..d66fccbc7892 100644 --- a/emulators/vmware-guestd6/files/vmware-guestd.sh.in +++ b/emulators/vmware-guestd6/files/vmware-guestd.sh.in @@ -8,7 +8,7 @@ # BEFORE: LOGIN PREFIX=%%PREFIX%% -. %%RC_SUBR%% +. /etc/rc.subr # Global checkvm_cmd="${PREFIX}/sbin/vmware-checkvm > /dev/null" |