public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH] dhcp.cgi: Fix for bug #12050
@ 2019-06-04 10:24 Bernhard Bitsch
  2019-06-04 12:33 ` Michael Tremer
  2019-06-05  9:05 ` Michael Tremer
  0 siblings, 2 replies; 9+ messages in thread
From: Bernhard Bitsch @ 2019-06-04 10:24 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 1021 bytes --]

Save fixed leases to file after addition of a new lease

Signed-off-by: Bernhard Bitsch <bbitsch(a)ipfire.org>

---
 html/cgi-bin/dhcp.cgi | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/html/cgi-bin/dhcp.cgi b/html/cgi-bin/dhcp.cgi
index 675d80012..19c55eb6d 100644
--- a/html/cgi-bin/dhcp.cgi
+++ b/html/cgi-bin/dhcp.cgi
@@ -443,6 +443,9 @@ if ($dhcpsettings{'ACTION'} eq $Lang::tr{'add'}.'2') {
 	$dhcpsettings{'FIX_ROOTPATH'} = &Header::cleanhtml($dhcpsettings{'FIX_ROOTPATH'});
 	if ($dhcpsettings{'KEY2'} eq '') { #add or edit ?
 	    unshift (@current2, "$dhcpsettings{'FIX_MAC'},$dhcpsettings{'FIX_ADDR'},$dhcpsettings{'FIX_ENABLED'},$dhcpsettings{'FIX_NEXTADDR'},$dhcpsettings{'FIX_FILENAME'},$dhcpsettings{'FIX_ROOTPATH'},$dhcpsettings{'FIX_REMARK'}\n");
+	    open(FILE, ">$filename2") or die 'Unable to open fixed lease file.';
+	    print FILE @current2;
+	    close(FILE);
 	    &General::log($Lang::tr{'fixed ip lease added'});

 	    # Enter edit mode
--
2.21.0.windows.1


^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2019-06-05 14:03 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-06-04 10:24 [PATCH] dhcp.cgi: Fix for bug #12050 Bernhard Bitsch
2019-06-04 12:33 ` Michael Tremer
2019-06-04 12:45   ` Aw: " Bernhard Bitsch
2019-06-05  9:05 ` Michael Tremer
2019-06-05 11:13   ` Aw: " Bernhard Bitsch
2019-06-05 12:06     ` Michael Tremer
2019-06-05 13:10       ` Aw: " Bernhard Bitsch
2019-06-05 13:26         ` Michael Tremer
2019-06-05 14:03           ` Aw: " Bernhard Bitsch

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox