From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Tremer To: development@lists.ipfire.org Subject: Re: [PATCH v3 4/5] services.cgi: add restart action and restrict action usage Date: Wed, 26 Oct 2022 15:37:39 +0100 Message-ID: <90BBB07F-0A62-4F00-8FD0-7B9F2098B1DC@ipfire.org> In-Reply-To: <20221011220157.17385-5-robin.roevens@disroot.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============2764771500954860267==" List-Id: --===============2764771500954860267== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Reviewed-by: Michael Tremer > On 11 Oct 2022, at 23:01, Robin Roevens wrote: >=20 > * 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 | 11 ++++++----- > 1 file changed, 6 insertions(+), 5 deletions(-) >=20 > diff --git a/html/cgi-bin/services.cgi b/html/cgi-bin/services.cgi > index e35b04cae..4b379251e 100644 > --- a/html/cgi-bin/services.cgi > +++ b/html/cgi-bin/services.cgi > @@ -143,7 +143,7 @@ END > my @param=3Dsplit(/!/, $paramstr); > # Make sure action parameter is actually one of the allowed service actions > given ($param[1]) { > - when ( ['start', 'stop', 'enable', 'disable'] ) { > + when ( ['start', 'stop', 'restart', 'enable', 'disable'] ) { > # Make sure pak-name and service name don't contain any illegal character > if ( $param[0] !~ /[^a-zA-Z_0-9\-]/ && > $param[2] !~ /[^a-zA-Z_0-9\-]/ ) { > @@ -196,8 +196,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 > @@ -307,7 +305,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; > @@ -330,7 +330,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 >=20 > --=20 > Dit bericht is gescanned op virussen en andere gevaarlijke > inhoud door MailScanner en lijkt schoon te zijn. >=20 --===============2764771500954860267==--