1
#!/bin/sh
2
module="msr_modul"
3
device="msr"
4
5
# invoke rmmod with all arguments we got
6
/sbin/rmmod $module $* || exit 1
7
8
# Remove stale nodes
9
10
rm -f /dev/${device} /dev/${device}0
11
12
13
14
15
16