diff options
author | Andrew Gregory <andrew.gregory.8@gmail.com> | 2013-02-11 22:13:30 -0500 |
---|---|---|
committer | William Hubbs <w.d.hubbs@gmail.com> | 2013-02-16 20:46:34 -0600 |
commit | 89bb04a01a2d0b71c56c918961f32fe8e80d8234 (patch) | |
tree | 0f84ae2d18eedb4392bb881773a450cf3ffeda11 /init.d/procfs.in | |
parent | 414ef6466187c1452b97b69f946cdd150eaa465d (diff) |
do not use SYSCONFDIR for binfmt.d
This makes binfmt.d consistent with tmpfiles.d and systemd which uses
hard coded paths for both.
Signed-off-by: Andrew Gregory <andrew.gregory.8@gmail.com>
Diffstat (limited to 'init.d/procfs.in')
-rw-r--r-- | init.d/procfs.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/init.d/procfs.in b/init.d/procfs.in index 992567e7..7b7c6e65 100644 --- a/init.d/procfs.in +++ b/init.d/procfs.in @@ -31,7 +31,7 @@ start() ebegin "Loading custom binary format handlers" fmts=$(grep -hsv -e '^[#;]' -e '^[[:space:]]*$' \ /run/binfmt.d/*.conf \ - @SYSCONFDIR@/binfmt.d/*.conf \ + /etc/binfmt.d/*.conf \ ""/usr/lib/binfmt.d/*.conf) if [ -n "${fmts}" ]; then echo "${fmts}" > /proc/sys/fs/binfmt_misc/register |