Uwe Gansert 2011-03-02 08:56:26 +00:00 committed by Git OBS Bridge
parent a8ea7cc957
commit c59dca9e5a
6 changed files with 69 additions and 38 deletions

View File

@ -1,13 +0,0 @@
Index: src/config.h
===================================================================
--- src/config.h.orig
+++ src/config.h
@@ -58,7 +58,7 @@
#endif
#define DEFLEASE 3600 /* default lease time, 1 hour */
-#define CHUSER "nobody"
+#define CHUSER "dnsmasq"
#define CHGRP "nogroup"
#define DHCP_SERVER_PORT 67
#define DHCP_CLIENT_PORT 68

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:4395300ce14a8d007449f752e311f92de67583bf57102c0f349b363423cbefdc
size 326711

3
dnsmasq-2.57.tar.bz2 Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d1f1beeadcd458ba2dc43e80623117d6c9fc63dc0e61abc62673b1a9c2b644c9
size 350159

View File

@ -1,3 +1,51 @@
-------------------------------------------------------------------
Wed Mar 2 09:52:12 CET 2011 - ug@suse.de
- Add IPv6 support to the TFTP server
- Log DNS queries at level LOG_INFO
- Add --add-mac option
- some logging fixes
- Don't complain about strings longer than
255 characters in txt records
- extended the --domain option
- Never cache DNS replies which have the 'cd' bit set
- Add --proxy-dnssec flag
- Allow a filename of "-" for --conf-file
- some smaller bugfixes
- update to 2.57
-------------------------------------------------------------------
Tue Jun 8 09:31:21 CEST 2010 - ug@suse.de
* Fix crash when /etc/ethers is in use.
* Fix crash in netlink_multicast().
* Allow the empty domain "." in dhcp domain-search (119)
options.
* 2.55 (there was no 2.54)
-------------------------------------------------------------------
Mon Jun 7 11:47:58 CEST 2010 - ug@suse.de
* Fixed bug which caused bad things to happen if a
resolv.conf file which exists is subsequently removed
* Rationalised the DHCP tag system
* Added --tag-if to allow boolean operations on tags
* Add broadcast/unicast information to DHCP logging
* Allow --dhcp-broadcast to be unconditional
* Fixed incorrect behaviour with NOT <tag> conditionals in
dhcp-options
* If we send vendor-class encapsulated options based on the
vendor-class supplied by the client, and no explicit
vendor-class option is given, echo back the vendor-class
from the client.
* Fix bug which stopped dnsmasq from matching both a
circuitid and a remoteid
* Add --dhcp-proxy
* Added interface:<iface name> part to dhcp-range
* and a lot more ... checke the CHANGELOG in the package
* 2.53
-------------------------------------------------------------------
Mon Jan 25 09:31:02 CET 2010 - ug@suse.de

View File

@ -1,5 +1,5 @@
#
# spec file for package dnsmasq (Version 2.52)
# spec file for package dnsmasq (Version 2.55)
#
# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
@ -20,7 +20,7 @@
Name: dnsmasq
Summary: Lightweight, Easy-to-Configure DNS Forwarder and DHCP Server
Version: 2.52
Version: 2.57
Release: 1
License: GPLv2+
Group: Productivity/Networking/DNS/Servers
@ -31,7 +31,6 @@ Url: http://www.thekelleys.org.uk/dnsmasq/
Source: %{name}-%{version}.tar.bz2
Source1: vendor-files.tar.bz2
Patch1: group_and_isc.diff
Patch2: chuser.diff
Patch3: manpage.diff
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: dbus-1-devel libidn libidn-devel pkg-config
@ -56,7 +55,6 @@ Authors:
%setup -n dnsmasq-%{version}
%setup -T -D -a1 -n dnsmasq-%{version}
%patch1 -p0
%patch2 -p0
%patch3 -p0
echo "#define HAVE_DBUS" >> src/config.h

View File

@ -1,8 +1,19 @@
Index: man/dnsmasq.8
===================================================================
--- man/dnsmasq.8.orig
+++ man/dnsmasq.8
@@ -110,7 +110,7 @@ can be over-ridden with this switch.
--- src/config.h
+++ src/config.h 2011/03/02 08:46:53
@@ -62,8 +62,8 @@
#endif
#define DEFLEASE 3600 /* default lease time, 1 hour */
-#define CHUSER "nobody"
-#define CHGRP "dip"
+#define CHUSER "dnsmasq"
+#define CHGRP "nogroup"
#define NAMESERVER_PORT 53
#define DHCP_SERVER_PORT 67
#define DHCP_CLIENT_PORT 68
--- man/dnsmasq.8
+++ man/dnsmasq.8 2011/03/02 08:43:55
@@ -118,7 +118,7 @@
.TP
.B \-g, --group=<groupname>
Specify the group which dnsmasq will run
@ -11,16 +22,3 @@ Index: man/dnsmasq.8
/etc/ppp/resolv.conf which is not normally world readable.
.TP
.B \-v, --version
Index: src/config.h
===================================================================
--- src/config.h.orig
+++ src/config.h
@@ -59,7 +59,7 @@
#define DEFLEASE 3600 /* default lease time, 1 hour */
#define CHUSER "nobody"
-#define CHGRP "dip"
+#define CHGRP "nogroup"
#define DHCP_SERVER_PORT 67
#define DHCP_CLIENT_PORT 68
#define DHCP_SERVER_ALTPORT 1067