From c91e4c56f635b3ce863d881f8a49d213248826f9 Mon Sep 17 00:00:00 2001 From: yar Date: Sat, 30 Dec 2006 22:53:20 +0000 Subject: Eliminate global symbols starting with an underscore from rc.d scripts, except for mdconfig* and jail. Such symbols are reserved for the rc.subr internals. Most scripts can be fixed by just declaring _foo symbols as local: few scripts actually need them to be global. Discussed with: dougb in freebsd-rc --- etc/rc.d/abi | 2 ++ 1 file changed, 2 insertions(+) (limited to 'etc/rc.d/abi') diff --git a/etc/rc.d/abi b/etc/rc.d/abi index 0c6b708..d2d3c31 100644 --- a/etc/rc.d/abi +++ b/etc/rc.d/abi @@ -23,6 +23,8 @@ sysv_start() linux_start() { + local _tmpdir + echo -n ' linux' load_kld -e 'linux(aout|elf)' linux if [ -x /compat/linux/sbin/ldconfigDisabled ]; then -- cgit v1.1