#!/bin/sh

MODULE="nrx"

if lsmod | grep "$MODULE" &> /dev/null ; then
  exit 0
else
  exit 1
fi

