diff options
author | wcohen <wcohen> | 2005-08-18 19:46:32 +0000 |
---|---|---|
committer | wcohen <wcohen> | 2005-08-18 19:46:32 +0000 |
commit | 75a163d33bf8ea239d5e6a10be1e293c5278f3c7 (patch) | |
tree | b5fdf5fd374c40eb0e898441ebbf05f1c87ffb6f /stp_check.in | |
parent | bc8d0d95c79b6994f0829ede307d42a35caf641f (diff) | |
download | systemtap-steved-75a163d33bf8ea239d5e6a10be1e293c5278f3c7.tar.gz systemtap-steved-75a163d33bf8ea239d5e6a10be1e293c5278f3c7.tar.xz systemtap-steved-75a163d33bf8ea239d5e6a10be1e293c5278f3c7.zip |
Check to see if relayfs available via /proc/filesystems.
Diffstat (limited to 'stp_check.in')
-rwxr-xr-x | stp_check.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stp_check.in b/stp_check.in index 92ef4fed..a8d7c1ce 100755 --- a/stp_check.in +++ b/stp_check.in @@ -33,7 +33,7 @@ load_module() prefix=@prefix@ VAR_DIR=@localstatedir@/cache/systemtap -RELAYFS=`grep " relayfs_poll" /boot/System.map-\`uname -r\`` +RELAYFS=`grep "relayfs" /proc/filesystems` if [ -z "$RELAYFS" ] then RELAYFS=`/sbin/lsmod | grep relayfs` |