diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-09-10 23:18:18 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-09-10 23:18:18 -0400 |
commit | 0fd1138e529eaea09ee72e384b08a93e3a6989a7 (patch) | |
tree | 6ba921bd49a33bb8fde54381a1bce7f1ce735673 | |
parent | 6088f9ec5a8f3d4f0a0baa12ed3fd604d0b15fd3 (diff) |
split tmpfiles.d/systemd.conf.m4
-rw-r--r-- | tmpfiles.d/.gitignore | 2 | ||||
-rw-r--r-- | tmpfiles.d/systemd-coredump.conf | 10 | ||||
-rw-r--r-- | tmpfiles.d/systemd-journald.conf.m4 (renamed from tmpfiles.d/systemd.conf.m4) | 20 | ||||
-rw-r--r-- | tmpfiles.d/systemd-networkd.conf | 12 | ||||
-rw-r--r-- | tmpfiles.d/systemd.conf | 22 |
5 files changed, 45 insertions, 21 deletions
diff --git a/tmpfiles.d/.gitignore b/tmpfiles.d/.gitignore index 4f0ecaa9c3..c8c9fe059b 100644 --- a/tmpfiles.d/.gitignore +++ b/tmpfiles.d/.gitignore @@ -1,2 +1,2 @@ /etc.conf -/systemd.conf +/systemd-journald.conf diff --git a/tmpfiles.d/systemd-coredump.conf b/tmpfiles.d/systemd-coredump.conf new file mode 100644 index 0000000000..02b052583d --- /dev/null +++ b/tmpfiles.d/systemd-coredump.conf @@ -0,0 +1,10 @@ +# This file is part of systemd. +# +# systemd is free software; you can redistribute it and/or modify it +# under the terms of the GNU Lesser General Public License as published by +# the Free Software Foundation; either version 2.1 of the License, or +# (at your option) any later version. + +# See tmpfiles.d(5) for details + +d /var/lib/systemd/coredump 0755 root root 3d diff --git a/tmpfiles.d/systemd.conf.m4 b/tmpfiles.d/systemd-journald.conf.m4 index 2cd58e9121..1fe0f7acfc 100644 --- a/tmpfiles.d/systemd.conf.m4 +++ b/tmpfiles.d/systemd-journald.conf.m4 @@ -7,23 +7,6 @@ # See tmpfiles.d(5) for details -d /run/user 0755 root root - -F! /run/utmp 0664 root utmp - - -d /run/systemd/ask-password 0755 root root - -d /run/systemd/seats 0755 root root - -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 - -m4_ifdef(`ENABLE_NETWORKD', -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 - -)m4_dnl - -d /run/log 0755 root root - - z /run/log/journal 2755 root systemd-journal - - Z /run/log/journal/%m ~2750 root systemd-journal - - m4_ifdef(`HAVE_ACL',`m4_dnl @@ -68,6 +51,3 @@ a+ /var/log/journal/%m - - - - d:group:wheel:r-x a+ /var/log/journal/%m - - - - group:wheel:r-x a+ /var/log/journal/%m/system.journal - - - - group:wheel:r-- '')')')m4_dnl - -d /var/lib/systemd 0755 root root - -d /var/lib/systemd/coredump 0755 root root 3d diff --git a/tmpfiles.d/systemd-networkd.conf b/tmpfiles.d/systemd-networkd.conf new file mode 100644 index 0000000000..24197555ee --- /dev/null +++ b/tmpfiles.d/systemd-networkd.conf @@ -0,0 +1,12 @@ +# This file is part of systemd. +# +# systemd is free software; you can redistribute it and/or modify it +# under the terms of the GNU Lesser General Public License as published by +# the Free Software Foundation; either version 2.1 of the License, or +# (at your option) any later version. + +# See tmpfiles.d(5) for details + +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 - diff --git a/tmpfiles.d/systemd.conf b/tmpfiles.d/systemd.conf new file mode 100644 index 0000000000..0a7c85d9ec --- /dev/null +++ b/tmpfiles.d/systemd.conf @@ -0,0 +1,22 @@ +# This file is part of systemd. +# +# systemd is free software; you can redistribute it and/or modify it +# under the terms of the GNU Lesser General Public License as published by +# the Free Software Foundation; either version 2.1 of the License, or +# (at your option) any later version. + +# See tmpfiles.d(5) for details + +d /run/user 0755 root root - +F! /run/utmp 0664 root utmp - + +d /run/systemd/ask-password 0755 root root - +d /run/systemd/seats 0755 root root - +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/log 0755 root root - + +d /var/lib/systemd 0755 root root - |