summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--etc/rc.d/abi10
1 files changed, 8 insertions, 2 deletions
diff --git a/etc/rc.d/abi b/etc/rc.d/abi
index d2d3c31..3765b05 100644
--- a/etc/rc.d/abi
+++ b/etc/rc.d/abi
@@ -45,13 +45,19 @@ svr4_start()
abi_start()
{
- echo -n 'Additional ABI support:'
+ local _echostop
+
+ _echostop=
+ if checkyesno sysvipc_enable || checkyesno linux_enable || checkyesno svr4_enable; then
+ echo -n 'Additional ABI support:'
+ _echostop=yes
+ fi
checkyesno sysvipc_enable && sysv_start
checkyesno linux_enable && linux_start
checkyesno svr4_enable && svr4_start
- echo '.'
+ [ -n "${_echostop}" ] && echo '.'
}
load_rc_config $name
OpenPOWER on IntegriCloud