From mboxrd@z Thu Jan 1 00:00:00 1970 From: Robin Roevens To: development@lists.ipfire.org Subject: [PATCH 2/3] services.cgi: add restart action and restrict action usage Date: Mon, 03 Oct 2022 17:39:04 +0200 Message-ID: <20221003153905.14824-3-robin.roevens@disroot.org> In-Reply-To: <20221003153905.14824-1-robin.roevens@disroot.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============3715996574061336617==" List-Id: --===============3715996574061336617== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable * Add restart action to services. * Only display available actions for a service: Start when service is stopped or Stop and Restart when a service is running. Signed-off-by: Robin Roevens --- html/cgi-bin/services.cgi | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/html/cgi-bin/services.cgi b/html/cgi-bin/services.cgi index d480088a8..498d7fd8e 100644 --- a/html/cgi-bin/services.cgi +++ b/html/cgi-bin/services.cgi @@ -189,8 +189,6 @@ END =20 my $status =3D isautorun($pak,$service,$col); print "$status "; - print "3D'$Lang::tr{'start'}'"; - print "3D'$Lang::tr{'stop'}' "; my $status =3D isrunningaddon($pak,$service,$col); $status =3D~ s/\=1B\[[0-1]\;[0-9]+m//g; =20 @@ -300,7 +298,9 @@ sub isrunningaddon (@) { my $testcmd =3D @testcmd[0]; =20 if ( $testcmd =3D~ /is\ running/ && $testcmd !~ /is\ not\ running/){ - $status =3D "$Lang::tr{'running'}"; + $status =3D "3D'$Lang::tr{'stop'}' "; + $status .=3D "3D'$Lang::tr{'restart'}' "; + $status .=3D "$Lang::tr{'running'}"; $testcmd =3D~ s/.* //gi; $testcmd =3D~ s/[a-z_]//gi; $testcmd =3D~ s/\[[0-1]\;[0-9]+//gi; @@ -323,7 +323,8 @@ sub isrunningaddon (@) { } $status .=3D"$memory KB"; }else{ - $status =3D "$Lang::tr{'stopped'}= "; + $status =3D "3D'$Lang::tr{'start'}'"; + $status .=3D "$Lang::tr{'stopped'}"; } return $status; } --=20 2.37.3 --=20 Dit bericht is gescanned op virussen en andere gevaarlijke inhoud door MailScanner en lijkt schoon te zijn. --===============3715996574061336617==--