diff options
author | i.Dark_Templar <darktemplar@dark-templar-archives.net> | 2017-04-10 17:07:17 +0300 |
---|---|---|
committer | William Hubbs <w.d.hubbs@gmail.com> | 2017-04-10 10:15:28 -0500 |
commit | 6f88ee4ec6f59e545346a7422facc3e5b6adac04 (patch) | |
tree | b8489346bf9a028fcec2ede1f102994382163e82 /init.d | |
parent | cc51bdca3bac963878141da047e92f125772e14f (diff) |
bootmisc: do not remove ld-elf32.so.hints
File /var/run/ld-elf32.so.hints is used on FreeBSD 64bit multilib
This fixes #125.
Diffstat (limited to 'init.d')
-rw-r--r-- | init.d/bootmisc.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/init.d/bootmisc.in b/init.d/bootmisc.in index efc1c572..40d3c933 100644 --- a/init.d/bootmisc.in +++ b/init.d/bootmisc.in @@ -71,7 +71,8 @@ cleanup_var_run_dir() ebegin "Cleaning /var/run" for x in $(find /var/run ! -type d ! -name utmp \ ! -name random-seed ! -name dev.db \ - ! -name ld-elf.so.hints ! -name ld.so.hints); + ! -name ld-elf.so.hints ! -name ld-elf32.so.hints \ + ! -name ld.so.hints); do # Clean stale sockets if [ -S "$x" ]; then |