Skip to content

Commit

Permalink
Merge pull request #81 from v0ske/master
Browse files Browse the repository at this point in the history
fix nfs warning in check_mount.pl
  • Loading branch information
KrisBuytaert authored Jan 27, 2022
2 parents d4049ab + 1404911 commit c75547f
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions check_mount.pl
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,11 @@ sub how_to
print $MOUNT . " is mounted!" . $TYPE . "\n";
exit $ERRORS{'OK'};
}
elsif ($TYPE eq 'nfs')
{
print $MOUNT . " is mounted! Type is " . $TYPE . "\n";
exit $ERRORS{'OK'};
}
else
{
print $MOUNT . " is mounted! But type is not " . $TYPE . "\n";
Expand Down

0 comments on commit c75547f

Please sign in to comment.