From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bernhard Bitsch To: development@lists.ipfire.org Subject: Re: [PATCH 2/3] services.cgi: add restart action and restrict action usage Date: Mon, 03 Oct 2022 20:42:58 +0200 Message-ID: In-Reply-To: <20221003153905.14824-3-robin.roevens@disroot.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============7159370985999055085==" List-Id: --===============7159370985999055085== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Reviewed-by: Bernhard Bitsch Am 03.10.2022 um 17:39 schrieb Robin Roevens: > * 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. >=20 > Signed-off-by: Robin Roevens > --- > html/cgi-bin/services.cgi | 9 +++++---- > 1 file changed, 5 insertions(+), 4 deletions(-) >=20 > 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; > } --===============7159370985999055085==--