Skip to content
Snippets Groups Projects
Commit d4a943df authored by Erik von Reis's avatar Erik von Reis
Browse files

rtcds: added end-of-word check to status scan of lsmod for model names. Fix...

rtcds: added end-of-word check to status scan of lsmod for model names.  Fix had previously been applied to other system models
parent e6bdf275
No related branches found
No related tags found
1 merge request!200Improve systemd kernel module handling
......@@ -382,7 +382,7 @@ _lsmod() {
if epics_only_model $m ; then
test 0
else
md=$(lsmod | grep "^${m}") || true
md=$(lsmod | grep "^${m}\s") || true
if [ -z "$md" ] ; then
printf "%-18s ***NOT LOADED***\n" "$m"
allloaded=1
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment