From: Tomas Krizek Date: Mon, 18 Feb 2019 14:13:49 +0000 (+0100) Subject: meson: etc/config - explicitly bind to localhost X-Git-Tag: v4.0.0~24^2~101 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=039b3c3ca84e6189e9f3448b487a5d39e7292ffe;p=thirdparty%2Fknot-resolver.git meson: etc/config - explicitly bind to localhost Since we drop priviledges in the config, we need to bind explicitly before that happens. --- diff --git a/etc/config/meson.build b/etc/config/meson.build index b02e027fa..c6f5023b8 100644 --- a/etc/config/meson.build +++ b/etc/config/meson.build @@ -6,8 +6,8 @@ if systemd_unit_files == 'enabled' -- Network interface configuration: see kresd.systemd(7)''' else config_defaults = ''' --- Listen on localhost (default) and external interface --- net = { '127.0.0.1', '::1', '192.0.2.1' } +-- Listen on localhost +net = { '127.0.0.1', '::1' } -- Drop root privileges user('@0@', '@1@')'''.format(user, group)