diff options
author | Tom Gundersen <teg@jklm.no> | 2014-06-03 18:57:47 +0200 |
---|---|---|
committer | Tom Gundersen <teg@jklm.no> | 2014-06-03 18:58:00 +0200 |
commit | 85b5673b337048fa881a5afb1d00d1a7b95950fb (patch) | |
tree | cad0470eb05466f590b6210a90950015a833ebbc /tmpfiles.d | |
parent | e918a1b5a94f270186dca59156354acd2a596494 (diff) | |
download | systemd-85b5673b337048fa881a5afb1d00d1a7b95950fb.tar.gz |
networkd: split runtime config dir from state dir
Configuration will be in
root:root /run/systemd/network
and state will be in
systemd-network:systemd-network /run/systemd/netif
This matches what we do for logind's seat/session state.
Diffstat (limited to 'tmpfiles.d')
-rw-r--r-- | tmpfiles.d/systemd.conf | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tmpfiles.d/systemd.conf b/tmpfiles.d/systemd.conf index 1fce5141e0..c5910f8cfe 100644 --- a/tmpfiles.d/systemd.conf +++ b/tmpfiles.d/systemd.conf @@ -21,9 +21,9 @@ d /run/systemd/sessions 0755 root root - d /run/systemd/users 0755 root root - d /run/systemd/machines 0755 root root - d /run/systemd/shutdown 0755 root root - -d /run/systemd/network 0755 systemd-network systemd-network - -d /run/systemd/network/links 0755 systemd-network systemd-network - -d /run/systemd/network/leases 0755 systemd-network systemd-network - +d /run/systemd/netif 0755 systemd-network systemd-network - +d /run/systemd/netif/links 0755 systemd-network systemd-network - +d /run/systemd/netif/leases 0755 systemd-network systemd-network - m /var/log/journal 2755 root systemd-journal - - Z /var/log/journal/%m 2755 root systemd-journal - - |