diff options
author | William Hubbs <w.d.hubbs@gmail.com> | 2013-12-01 19:25:01 -0600 |
---|---|---|
committer | William Hubbs <w.d.hubbs@gmail.com> | 2013-12-02 02:08:40 -0600 |
commit | 60d288a877a3671ea5b3483ed7c4612ec897b99a (patch) | |
tree | f370853f0a2f70b1c7491e7107d21ec457a1704e /init.d/bootmisc.in | |
parent | 1fccf91df12c3c7f7e68f9fa9a99a71e85d9b98e (diff) |
remove type command
The posix equivalent of the type command is "command -v", so now we use
that. Thanks to Jonathan Callen <jcallen@gentoo.org> for informing me
wrt the fix.
Diffstat (limited to 'init.d/bootmisc.in')
-rw-r--r-- | init.d/bootmisc.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/init.d/bootmisc.in b/init.d/bootmisc.in index 526ebfff..1b35a0a6 100644 --- a/init.d/bootmisc.in +++ b/init.d/bootmisc.in @@ -68,7 +68,7 @@ cleanup_var_run_dir() do # Clean stale sockets if [ -S "$x" ]; then - if type fuser >/dev/null 2>&1; then + if command -v fuser >/dev/null 2>&1; then fuser "$x" >/dev/null 2>&1 || rm -- "$x" else rm -- "$x" |