diff options
author | Lennart Poettering <lennart@poettering.net> | 2014-12-03 21:42:58 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2014-12-03 21:48:45 +0100 |
commit | e9140aff750e4f251f5f09b67412fed995fe9c47 (patch) | |
tree | 30f2c292e0154cfee8ce91bdf2c47674030255e9 /Makefile.am | |
parent | 144232a8e0ea77eed8c5a456832758681b5b3511 (diff) |
nss-myhostname: always resolve the host name "gateway" to the local default gateway
This is useful inside of containers or local networks to intrdouce a
stable name of the default gateway host (in case of containers usually
the host, in case of LANs usually local router).
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index 5b46243e65..d4d96e134f 100644 --- a/Makefile.am +++ b/Makefile.am @@ -2782,6 +2782,7 @@ tests += \ test-bus-gvariant \ test-event \ test-rtnl \ + test-local-addresses \ test-resolve bin_PROGRAMS += \ @@ -2940,6 +2941,13 @@ test_rtnl_LDADD = \ libsystemd-internal.la \ libsystemd-shared.la +test_local_addresses_SOURCES = \ + src/libsystemd/sd-rtnl/test-local-addresses.c + +test_local_addresses_LDADD = \ + libsystemd-internal.la \ + libsystemd-shared.la + test_resolve_SOURCES = \ src/libsystemd/sd-resolve/test-resolve.c |