* [PATCH] unbound-dhcp-leases-bridge: Migrate to Python 3
@ 2021-05-14 11:53 Michael Tremer
2021-05-14 13:01 ` Peter Müller
0 siblings, 1 reply; 3+ messages in thread
From: Michael Tremer @ 2021-05-14 11:53 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1101 bytes --]
Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>
---
config/unbound/unbound-dhcp-leases-bridge | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/config/unbound/unbound-dhcp-leases-bridge b/config/unbound/unbound-dhcp-leases-bridge
index e3da4860b..2d8ef1387 100644
--- a/config/unbound/unbound-dhcp-leases-bridge
+++ b/config/unbound/unbound-dhcp-leases-bridge
@@ -178,8 +178,8 @@ class UnboundDHCPLeasesBridge(object):
# Dump everything in the logs
log.debug("Static hosts:")
- for hostname, addresses in hosts.items():
- log.debug(" %-20s : %s" % (hostname, ", ".join(addresses)))
+ for name in hosts:
+ log.debug(" %-20s : %s" % (name, ", ".join(hosts[name])))
return hosts
@@ -402,9 +402,9 @@ class Lease(object):
address = ipaddress.ip_address(self.ipaddr)
- for subnet, domain in subnets.items():
+ for subnet in subnets:
if address in subnet:
- return domain
+ return subnets[subnet]
# Fall back to localdomain if no match could be found
return "localdomain"
--
2.31.0
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] unbound-dhcp-leases-bridge: Migrate to Python 3
2021-05-14 11:53 [PATCH] unbound-dhcp-leases-bridge: Migrate to Python 3 Michael Tremer
@ 2021-05-14 13:01 ` Peter Müller
2021-05-14 13:08 ` Michael Tremer
0 siblings, 1 reply; 3+ messages in thread
From: Peter Müller @ 2021-05-14 13:01 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1366 bytes --]
Hello Michael,
um, isn't it necessary to update the shebang of this script as well?
Apart from that:
Acked-by: Peter Müller <peter.mueller(a)ipfire.org>
Thanks, and best regards,
Peter Müller
> Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>
> ---
> config/unbound/unbound-dhcp-leases-bridge | 8 ++++----
> 1 file changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/config/unbound/unbound-dhcp-leases-bridge b/config/unbound/unbound-dhcp-leases-bridge
> index e3da4860b..2d8ef1387 100644
> --- a/config/unbound/unbound-dhcp-leases-bridge
> +++ b/config/unbound/unbound-dhcp-leases-bridge
> @@ -178,8 +178,8 @@ class UnboundDHCPLeasesBridge(object):
>
> # Dump everything in the logs
> log.debug("Static hosts:")
> - for hostname, addresses in hosts.items():
> - log.debug(" %-20s : %s" % (hostname, ", ".join(addresses)))
> + for name in hosts:
> + log.debug(" %-20s : %s" % (name, ", ".join(hosts[name])))
>
> return hosts
>
> @@ -402,9 +402,9 @@ class Lease(object):
>
> address = ipaddress.ip_address(self.ipaddr)
>
> - for subnet, domain in subnets.items():
> + for subnet in subnets:
> if address in subnet:
> - return domain
> + return subnets[subnet]
>
> # Fall back to localdomain if no match could be found
> return "localdomain"
>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] unbound-dhcp-leases-bridge: Migrate to Python 3
2021-05-14 13:01 ` Peter Müller
@ 2021-05-14 13:08 ` Michael Tremer
0 siblings, 0 replies; 3+ messages in thread
From: Michael Tremer @ 2021-05-14 13:08 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1559 bytes --]
Yeah, forget this patch :)
Thanks for finding this problem.
> On 14 May 2021, at 14:01, Peter Müller <peter.mueller(a)ipfire.org> wrote:
>
> Hello Michael,
>
> um, isn't it necessary to update the shebang of this script as well?
>
> Apart from that:
>
> Acked-by: Peter Müller <peter.mueller(a)ipfire.org>
>
> Thanks, and best regards,
> Peter Müller
>
>
>> Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>
>> ---
>> config/unbound/unbound-dhcp-leases-bridge | 8 ++++----
>> 1 file changed, 4 insertions(+), 4 deletions(-)
>>
>> diff --git a/config/unbound/unbound-dhcp-leases-bridge b/config/unbound/unbound-dhcp-leases-bridge
>> index e3da4860b..2d8ef1387 100644
>> --- a/config/unbound/unbound-dhcp-leases-bridge
>> +++ b/config/unbound/unbound-dhcp-leases-bridge
>> @@ -178,8 +178,8 @@ class UnboundDHCPLeasesBridge(object):
>>
>> # Dump everything in the logs
>> log.debug("Static hosts:")
>> - for hostname, addresses in hosts.items():
>> - log.debug(" %-20s : %s" % (hostname, ", ".join(addresses)))
>> + for name in hosts:
>> + log.debug(" %-20s : %s" % (name, ", ".join(hosts[name])))
>>
>> return hosts
>>
>> @@ -402,9 +402,9 @@ class Lease(object):
>>
>> address = ipaddress.ip_address(self.ipaddr)
>>
>> - for subnet, domain in subnets.items():
>> + for subnet in subnets:
>> if address in subnet:
>> - return domain
>> + return subnets[subnet]
>>
>> # Fall back to localdomain if no match could be found
>> return "localdomain"
>>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2021-05-14 13:08 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-14 11:53 [PATCH] unbound-dhcp-leases-bridge: Migrate to Python 3 Michael Tremer
2021-05-14 13:01 ` Peter Müller
2021-05-14 13:08 ` Michael Tremer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox