diff options
author | Tom Gundersen <teg@jklm.no> | 2013-10-28 20:11:10 +0100 |
---|---|---|
committer | Tom Gundersen <teg@jklm.no> | 2013-10-29 14:17:57 +0100 |
commit | 9dc670ea766c711741f462b29572f2e5f8f3f6bc (patch) | |
tree | ac963bddc915c6bde62624e145e60fae9cff6430 /src/udev/net | |
parent | f11880744c27209a42f502c690db86b38d2db14b (diff) |
network: move configuration to /etc/systemd/network
This is private configuraiton, so let's not pollute the namespace (and hence make Debian happy :) ).
Diffstat (limited to 'src/udev/net')
-rw-r--r-- | src/udev/net/link-config.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/udev/net/link-config.c b/src/udev/net/link-config.c index 089bd76564..0a86d0eb77 100644 --- a/src/udev/net/link-config.c +++ b/src/udev/net/link-config.c @@ -74,9 +74,9 @@ int link_config_ctx_new(link_config_ctx **ret) { LIST_HEAD_INIT(ctx->links); - ctx->link_dirs = strv_new("/etc/net/links", - "/run/net/links", - "/usr/lib/net/links", + ctx->link_dirs = strv_new("/etc/systemd/network", + "/run/systemd/network", + "/usr/lib/systemd/network", NULL); if (!ctx->link_dirs) { log_error("failed to build link config directory array"); |