* [PATCH] extrahd.cgi: Fix for Bug #12863 @ 2023-06-02 19:01 Jon Murphy 2023-06-05 10:42 ` Michael Tremer 2023-06-07 19:30 ` Bernhard Bitsch 0 siblings, 2 replies; 4+ messages in thread From: Jon Murphy @ 2023-06-02 19:01 UTC (permalink / raw) To: development [-- Attachment #1: Type: text/plain, Size: 850 bytes --] -Fixes remove entries in 'extrahd' via the webinterface for extrahd.cgi file. Suggested-by: Bernhard Bitsch <bbitsch(a)ipfire.org> Signed-off-by: Jon Murphy <jon.murphy(a)ipfire.org> --- html/cgi-bin/extrahd.cgi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html/cgi-bin/extrahd.cgi b/html/cgi-bin/extrahd.cgi index 36c0efc2e..9dd3a0eee 100644 --- a/html/cgi-bin/extrahd.cgi +++ b/html/cgi-bin/extrahd.cgi @@ -103,7 +103,7 @@ END } elsif ($extrahdsettings{'ACTION'} eq $Lang::tr{'delete'}) { - if ( &General::system("/usr/local/bin/extrahdctrl", "umount", "$extrahdsettings{'PATH'}")) { + if ( ! &General::system("/usr/local/bin/extrahdctrl", "umount", "$extrahdsettings{'PATH'}")) { open( FILE, "< $devicefile" ) or die "Unable to read $devicefile"; @tmp = <FILE>; close FILE; -- 2.30.2 ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] extrahd.cgi: Fix for Bug #12863 2023-06-02 19:01 [PATCH] extrahd.cgi: Fix for Bug #12863 Jon Murphy @ 2023-06-05 10:42 ` Michael Tremer 2023-06-07 19:30 ` Bernhard Bitsch 1 sibling, 0 replies; 4+ messages in thread From: Michael Tremer @ 2023-06-05 10:42 UTC (permalink / raw) To: development [-- Attachment #1: Type: text/plain, Size: 1079 bytes --] Reviewed-by: Michael Tremer <michael.tremer(a)ipfire.org> The syntax pains me, but this is probably correct :) > On 2 Jun 2023, at 20:01, Jon Murphy <jon.murphy(a)ipfire.org> wrote: > > -Fixes remove entries in 'extrahd' via the webinterface for extrahd.cgi file. > > Suggested-by: Bernhard Bitsch <bbitsch(a)ipfire.org> > Signed-off-by: Jon Murphy <jon.murphy(a)ipfire.org> > --- > html/cgi-bin/extrahd.cgi | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/html/cgi-bin/extrahd.cgi b/html/cgi-bin/extrahd.cgi > index 36c0efc2e..9dd3a0eee 100644 > --- a/html/cgi-bin/extrahd.cgi > +++ b/html/cgi-bin/extrahd.cgi > @@ -103,7 +103,7 @@ END > } > elsif ($extrahdsettings{'ACTION'} eq $Lang::tr{'delete'}) > { > - if ( &General::system("/usr/local/bin/extrahdctrl", "umount", "$extrahdsettings{'PATH'}")) { > + if ( ! &General::system("/usr/local/bin/extrahdctrl", "umount", "$extrahdsettings{'PATH'}")) { > open( FILE, "< $devicefile" ) or die "Unable to read $devicefile"; > @tmp = <FILE>; > close FILE; > -- > 2.30.2 > ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] extrahd.cgi: Fix for Bug #12863 2023-06-02 19:01 [PATCH] extrahd.cgi: Fix for Bug #12863 Jon Murphy 2023-06-05 10:42 ` Michael Tremer @ 2023-06-07 19:30 ` Bernhard Bitsch 1 sibling, 0 replies; 4+ messages in thread From: Bernhard Bitsch @ 2023-06-07 19:30 UTC (permalink / raw) To: development [-- Attachment #1: Type: text/plain, Size: 1115 bytes --] Reviewed-by: Bernhard Bitsch <bbitsch(a)ipfire.org> Less painful syntax could be: + unless ( &General::system("/usr/loca/bin/extrahdctrl","umount",$extrahdsettings{'PATH'}")) { Am 02.06.2023 um 21:01 schrieb Jon Murphy: > -Fixes remove entries in 'extrahd' via the webinterface for extrahd.cgi file. > > Suggested-by: Bernhard Bitsch <bbitsch(a)ipfire.org> > Signed-off-by: Jon Murphy <jon.murphy(a)ipfire.org> > --- > html/cgi-bin/extrahd.cgi | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/html/cgi-bin/extrahd.cgi b/html/cgi-bin/extrahd.cgi > index 36c0efc2e..9dd3a0eee 100644 > --- a/html/cgi-bin/extrahd.cgi > +++ b/html/cgi-bin/extrahd.cgi > @@ -103,7 +103,7 @@ END > } > elsif ($extrahdsettings{'ACTION'} eq $Lang::tr{'delete'}) > { > - if ( &General::system("/usr/local/bin/extrahdctrl", "umount", "$extrahdsettings{'PATH'}")) { > + if ( ! &General::system("/usr/local/bin/extrahdctrl", "umount", "$extrahdsettings{'PATH'}")) { > open( FILE, "< $devicefile" ) or die "Unable to read $devicefile"; > @tmp = <FILE>; > close FILE; ^ permalink raw reply [flat|nested] 4+ messages in thread
[parent not found: <7CC7E099-EE53-4E18-BBB2-79607B005515@ipfire.org>]
* Re: [PATCH] extrahd.cgi: Fix for Bug #12863 [not found] <7CC7E099-EE53-4E18-BBB2-79607B005515@ipfire.org> @ 2023-06-07 12:25 ` Michael Tremer 0 siblings, 0 replies; 4+ messages in thread From: Michael Tremer @ 2023-06-07 12:25 UTC (permalink / raw) To: development [-- Attachment #1: Type: text/plain, Size: 2404 bytes --] Hello Jon, > On 5 Jun 2023, at 17:53, jon <jon.murphy(a)ipfire.org> wrote: > > Would flipping it around hurt less? > > (I’d don’t speak perl but I think this would work!) Oh no this wasn’t targeted at the code, just at Perl in general. I don’t find it obvious to read this at all, but there is no way to write this in an absolute intuitive way. So I am happy to have this merged as it is. The most important thing is that it does the right thing. -Michael > ``` > if ( &General::system("/usr/local/bin/extrahdctrl", "umount", "$extrahdsettings{'PATH'}")) { > $errormessage = "$Lang::tr{'extrahd cant umount'} $extrahdsettings{'PATH'}$Lang::tr{'extrahd maybe the device is in use'}?"; > } else { > open( FILE, "< $devicefile" ) or die "Unable to read $devicefile"; > @tmp = <FILE>; > close FILE; > open( FILE, "> $devicefile" ) or die "Unable to write $devicefile"; > foreach $deviceentry (sort @tmp) > { > @tmpline = split( /\;/, $deviceentry ); > if ( $tmpline[2] ne $extrahdsettings{'PATH'} ) > { > print FILE $deviceentry; > } > } > close FILE; > } > ``` > > Jon Murphy > jon.murphy(a)ipfire.org > > > >> On Jun 5, 2023, at 5:42 AM, Michael Tremer <michael.tremer(a)ipfire.org> wrote: >> >> Reviewed-by: Michael Tremer <michael.tremer(a)ipfire.org> >> >> The syntax pains me, but this is probably correct :) >> >>> On 2 Jun 2023, at 20:01, Jon Murphy <jon.murphy(a)ipfire.org> wrote: >>> >>> -Fixes remove entries in 'extrahd' via the webinterface for extrahd.cgi file. >>> >>> Suggested-by: Bernhard Bitsch <bbitsch(a)ipfire.org> >>> Signed-off-by: Jon Murphy <jon.murphy(a)ipfire.org> >>> --- >>> html/cgi-bin/extrahd.cgi | 2 +- >>> 1 file changed, 1 insertion(+), 1 deletion(-) >>> >>> diff --git a/html/cgi-bin/extrahd.cgi b/html/cgi-bin/extrahd.cgi >>> index 36c0efc2e..9dd3a0eee 100644 >>> --- a/html/cgi-bin/extrahd.cgi >>> +++ b/html/cgi-bin/extrahd.cgi >>> @@ -103,7 +103,7 @@ END >>> } >>> elsif ($extrahdsettings{'ACTION'} eq $Lang::tr{'delete'}) >>> { >>> - if ( &General::system("/usr/local/bin/extrahdctrl", "umount", "$extrahdsettings{'PATH'}")) { >>> + if ( ! &General::system("/usr/local/bin/extrahdctrl", "umount", "$extrahdsettings{'PATH'}")) { >>> open( FILE, "< $devicefile" ) or die "Unable to read $devicefile"; >>> @tmp = <FILE>; >>> close FILE; >>> -- >>> 2.30.2 >>> >> > ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2023-06-07 19:30 UTC | newest] Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed) -- links below jump to the message on this page -- 2023-06-02 19:01 [PATCH] extrahd.cgi: Fix for Bug #12863 Jon Murphy 2023-06-05 10:42 ` Michael Tremer 2023-06-07 19:30 ` Bernhard Bitsch [not found] <7CC7E099-EE53-4E18-BBB2-79607B005515@ipfire.org> 2023-06-07 12:25 ` Michael Tremer
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox