diff options
author | Dave Reisner <dreisner@archlinux.org> | 2011-07-24 11:05:36 -0400 |
---|---|---|
committer | Dave Reisner <dreisner@archlinux.org> | 2011-07-24 16:06:32 -0400 |
commit | 7e39dc717edd4690772059ad4d5a7550dbf65019 (patch) | |
tree | f783fb60f94a2875268fc0cd39d6a2166ca3f20c /tmpfiles.conf | |
parent | 97f84c28e969920cac8700fe6d12c51aca32d257 (diff) |
arch-tmpfiles: check args, warn on invalid entries
Introduces the checkparams functions, which thoroughly checks arguments
for presence, length, and some amount of data validation.
Signed-off-by: Dave Reisner <dreisner@archlinux.org>
Diffstat (limited to 'tmpfiles.conf')
-rw-r--r-- | tmpfiles.conf | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/tmpfiles.conf b/tmpfiles.conf index d47a028..f7db5a0 100644 --- a/tmpfiles.conf +++ b/tmpfiles.conf @@ -2,19 +2,19 @@ # /usr/lib/tmpfiles.d/arch.conf # -d /tmp/.X11-unix 1777 root root 10d -d /tmp/.ICE-unix 1777 root root 10d -d /tmp/.XIM-unix 1777 root root 10d -d /tmp/.font-unix 1777 root root 10d -d /tmp/.Test-unix 1777 root root 10d +D /tmp 1777 root root +D /run/daemons 0755 root root -f /var/run/tmp 0664 - utmp +d /tmp/.X11-unix 1777 root root +d /tmp/.ICE-unix 1777 root root +d /tmp/.XIM-unix 1777 root root +d /tmp/.font-unix 1777 root root +d /tmp/.Test-unix 1777 root root + +f /var/run/tmp 0664 root utmp r /tmp/.X[0-9]-lock r /etc/nologin r /etc/shutdownpid r /forcefsck -D /tmp/ -D /var/run/daemons - |