summaryrefslogtreecommitdiff
path: root/src/network/networkd.c
diff options
context:
space:
mode:
authorTom Gundersen <teg@jklm.no>2014-03-13 19:02:28 +0100
committerTom Gundersen <teg@jklm.no>2014-03-14 12:44:17 +0100
commit0ea51a1129b9984a3c6d96cef1b0e33c99b5e9cf (patch)
treea83f8b579a15e9deda17f2cc94c3bf55cd2b8fa7 /src/network/networkd.c
parent2a1763edfbdb95be643d595afbcc64f3fc092e46 (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.c')
-rw-r--r--src/network/networkd.c16
1 files changed, 14 insertions, 2 deletions
diff --git a/src/network/networkd.c b/src/network/networkd.c
index 2f6a12dbcc..f0e6ad5201 100644
--- a/src/network/networkd.c
+++ b/src/network/networkd.c
@@ -42,8 +42,20 @@ int main(int argc, char *argv[]) {
/* Always create the directories people can create inotify
* watches in. */
- mkdir_label("/run/systemd/network/links", 0755);
- mkdir_label("/run/systemd/network/leases", 0755);
+ r = mkdir_label("/run/systemd/network", 0755);
+ if (r < 0)
+ log_error("Could not create runtime directory: %s",
+ strerror(-r));
+
+ r = mkdir_label("/run/systemd/network/links", 0755);
+ if (r < 0)
+ log_error("Could not create runtime directory 'links': %s",
+ strerror(-r));
+
+ r = mkdir_label("/run/systemd/network/leases", 0755);
+ if (r < 0)
+ log_error("Could not create runtime directory 'leases': %s",
+ strerror(-r));
r = manager_new(&m);
if (r < 0) {