mirror of
https://github.com/opnsense/src.git
synced 2026-02-13 15:57:05 -05:00
leftover files in /tmp. Script slightly modified from PR version to use fewer processes. PR: i386/7725 Submitted by: Stefan Eggers seggers@semyam.dinoco.de
10 lines
216 B
Bash
10 lines
216 B
Bash
#!/bin/sh
|
|
|
|
# $Id: linux,v 1.4 1997/02/22 12:48:25 peter Exp $
|
|
|
|
if modstat -n linux_mod > /dev/null ; then
|
|
echo Linux lkm already loaded
|
|
exit 1
|
|
else
|
|
modload -e linux_mod -u -q -o /tmp/linux_mod /lkm/linux_mod.o
|
|
fi
|