diff options
author | Tom Gundersen <teg@jklm.no> | 2014-03-13 19:02:28 +0100 |
---|---|---|
committer | Tom Gundersen <teg@jklm.no> | 2014-03-14 12:44:17 +0100 |
commit | 0ea51a1129b9984a3c6d96cef1b0e33c99b5e9cf (patch) | |
tree | a83f8b579a15e9deda17f2cc94c3bf55cd2b8fa7 /src/network/networkd-link.c | |
parent | 2a1763edfbdb95be643d595afbcc64f3fc092e46 (diff) |
networkd: fix creation of runtime dirs at startup
This allows us to drop the repeated attempted creations of the runtime dirs during runtime.
Diffstat (limited to 'src/network/networkd-link.c')
-rw-r--r-- | src/network/networkd-link.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/network/networkd-link.c b/src/network/networkd-link.c index 39cef2254c..2650f86357 100644 --- a/src/network/networkd-link.c +++ b/src/network/networkd-link.c @@ -1367,10 +1367,6 @@ int link_save(Link *link) { assert(link); assert(link->state_file); - r = mkdir_safe_label("/run/systemd/network/links", 0755, 0, 0); - if (r < 0) - goto finish; - r = fopen_temporary(link->state_file, &f, &temp_path); if (r < 0) goto finish; |