summaryrefslogtreecommitdiff
path: root/src/udev
diff options
context:
space:
mode:
authorTom Gundersen <teg@jklm.no>2013-10-28 20:11:10 +0100
committerTom Gundersen <teg@jklm.no>2013-10-29 14:17:57 +0100
commit9dc670ea766c711741f462b29572f2e5f8f3f6bc (patch)
treeac963bddc915c6bde62624e145e60fae9cff6430 /src/udev
parentf11880744c27209a42f502c690db86b38d2db14b (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')
-rw-r--r--src/udev/net/link-config.c6
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");