Merge pull request #1 from hak5/gh-pages

merge from upstream
pull/38/head
mmdj4u 2020-05-10 16:48:36 -05:00 committed by GitHub
commit 07abaadd25
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -32,7 +32,8 @@ function stop {
}
function status {
if pgrep sshfs > /dev/null; then echo "1"; else echo "0"; fi
pidof sshfs > /dev/null
if [ $? -eq 0 ]; then echo "1"; else echo "0"; fi
}
function configure {