diff options
-rw-r--r-- | dbus/dnsmasq.conf | 4 | ||||
-rw-r--r-- | packaging/dnsmasq.spec | 5 |
2 files changed, 6 insertions, 3 deletions
diff --git a/dbus/dnsmasq.conf b/dbus/dnsmasq.conf index 82b1c76..a14f363 100644 --- a/dbus/dnsmasq.conf +++ b/dbus/dnsmasq.conf @@ -7,8 +7,8 @@ <allow send_destination="uk.org.thekelleys.dnsmasq"/> </policy> <policy context="default"> - <deny own="uk.org.thekelleys.dnsmasq"/> - <deny send_destination="uk.org.thekelleys.dnsmasq"/> + <allow own="uk.org.thekelleys.dnsmasq"/> + <allow send_destination="uk.org.thekelleys.dnsmasq"/> </policy> </busconfig> diff --git a/packaging/dnsmasq.spec b/packaging/dnsmasq.spec index 2d9838f..1c00c19 100644 --- a/packaging/dnsmasq.spec +++ b/packaging/dnsmasq.spec @@ -1,6 +1,6 @@ Name: dnsmasq Summary: A lightweight DNS forwarder and DHCP server -Version: 2.57 +Version: 2.57.1 Release: 0 Group: Network & Connectivity/Data Network License: GPL-2.0 @@ -31,7 +31,10 @@ mkdir -p /opt/var/lib/misc %install %make_install +mkdir -p %{buildroot}%{_sysconfdir}/dbus-1/system.d +cp dbus/dnsmasq.conf %{buildroot}%{_sysconfdir}/dbus-1/system.d/dnsmasq.conf %files %manifest %{name}.manifest %{_bindir}/dnsmasq +%attr(644,root,root) %{_sysconfdir}/dbus-1/system.d/* |