From 4c141e44b54fa80aac57c31269a25c7669054c66 Mon Sep 17 00:00:00 2001 From: Jouke Witteveen Date: Mon, 14 May 2012 16:47:35 +0200 Subject: Fix sh compatibility (FS#29880) Installing Virtualbox guest additions should work again. --- rc.d/net-set-variable | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'rc.d/net-set-variable') diff --git a/rc.d/net-set-variable b/rc.d/net-set-variable index cc881e7..d2d68fa 100644 --- a/rc.d/net-set-variable +++ b/rc.d/net-set-variable @@ -1,10 +1,10 @@ # Set the NET variable if specified on the kernel command line. -net-set-variable() { +net_set_variable() { local re="\" if [[ -f /proc/cmdline && $(< /proc/cmdline) =~ $re ]]; then export NET=${BASH_REMATCH[1]} fi } -add_hook multi_start net-set-variable +add_hook multi_start net_set_variable -- cgit v1.2.3-24-g4f1b