diff options
author | Javier Martinez Canillas <javier@dowhile0.org> | 2018-02-25 22:25:31 +0100 |
---|---|---|
committer | Javier Martinez Canillas <javier@dowhile0.org> | 2018-02-25 22:25:37 +0100 |
commit | e3c38f894f146aad18e14196ca39e679f35bf19f (patch) | |
tree | 4ce196fedcbe9e451ea18f85dccecfd14afbd264 /simple | |
parent | c400d261b75b51eed26bd851e4458c4f6eda8eff (diff) | |
download | ldd3-e3c38f894f146aad18e14196ca39e679f35bf19f.tar.gz |
Don't use absolute path for commands in load/unload scripts
Just let the shell lookup from the user's $PATH since some tools may not
be installed in the absolute path used in the scripts.
Signed-off-by: Javier Martinez Canillas <javier@dowhile0.org>
Diffstat (limited to 'simple')
-rwxr-xr-x | simple/simple_load | 2 | ||||
-rwxr-xr-x | simple/simple_unload | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/simple/simple_load b/simple/simple_load index 5cd004d..a72e53c 100755 --- a/simple/simple_load +++ b/simple/simple_load @@ -12,7 +12,7 @@ fi # invoke insmod with all arguments we got # and use a pathname, as newer modutils don't look in . by default -/sbin/insmod -f ./$module.ko $* || exit 1 +insmod ./$module.ko $* || exit 1 major=`cat /proc/devices | awk "\\$2==\"$module\" {print \\$1}"` diff --git a/simple/simple_unload b/simple/simple_unload index dca9421..eae8068 100755 --- a/simple/simple_unload +++ b/simple/simple_unload @@ -3,7 +3,7 @@ module="simple" device="simple" # invoke rmmod with all arguments we got -/sbin/rmmod $module $* || exit 1 +rmmod $module $* || exit 1 # Remove stale nodes rm -f /dev/${device}[rn] |