diff options
Diffstat (limited to 'init.d/bootmisc.in')
-rw-r--r-- | init.d/bootmisc.in | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/init.d/bootmisc.in b/init.d/bootmisc.in index 529097ef..c3e714a9 100644 --- a/init.d/bootmisc.in +++ b/init.d/bootmisc.in @@ -93,8 +93,12 @@ start() ! -name ld-elf.so.hints ! -name ld.so.hints); do # Clean stale sockets - if [ -S "${x}" ] && type fuser >/dev/null 2>&1; then - fuser -s "${x}" || rm "${x}" + if [ -S "${x}" ]; then + if type fuser >/dev/null 2>&1; then + fuser "${x}" 2>/dev/null || rm "${x}" + else + rm "${x}" + fi fi [ ! -f "${x}" ] && continue # Do not remove pidfiles of already running daemons |