From: Michael Tremer Date: Mon, 17 May 2021 18:57:29 +0000 (+0100) Subject: mac.cgi: Use new system methods X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=751765b732cc914f45ca123f609af7fc09baa208;p=people%2Fstevee%2Fipfire-2.x.git mac.cgi: Use new system methods Signed-off-by: Michael Tremer --- diff --git a/html/cgi-bin/mac.cgi b/html/cgi-bin/mac.cgi index 161be3421e..f4c5aa2d4b 100644 --- a/html/cgi-bin/mac.cgi +++ b/html/cgi-bin/mac.cgi @@ -94,7 +94,7 @@ if ($macsettings{'ACTION'} eq $Lang::tr{'save'}) { } } if ($macsettings{'ACTION'} eq $Lang::tr{'reconnect'}) { - system("/usr/local/bin/redctrl restart >/dev/null 2>&1 &"); + &General::system_background("/usr/local/bin/redctrl", "restart"); &Header::openbox('100%', 'left', $Lang::tr{'mac address recon'} ); print "$Lang::tr{'mac address done'}\n"; &Header::closebox(); @@ -107,7 +107,7 @@ if ($macsettings{'ACTION'} eq $Lang::tr{'delete'} ) { } if ($macsettings{'ACTION'} eq $Lang::tr{'reboot'}) { &General::log($Lang::tr{'rebooting ipfire'}); - system("/usr/local/bin/ipfirereboot boot"); + &General::system("/usr/local/bin/ipfirereboot", "boot"); &Header::openbox('100%', 'left', $Lang::tr{'rebooting ipfire'} ); print "  

"; print "";