Skip to content
Permalink
1139b72d5e
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
14 lines (10 sloc) 224 Bytes
#!/bin/bash
umount /tmp/mnt
killall -TERM pvfs2-client
sleep 2
if test "x`fuser /dev/pvfs2-req`" = "x"; then
rmmod pvfs2
else
echo "It seems that the pvfs2 device file is still open!"
fuser /dev/pvfs2-req
fi