11 lines
128 B
Plaintext
11 lines
128 B
Plaintext
|
# vim: set ft=sh:
|
||
|
# shellcheck shell=sh
|
||
|
#
|
||
|
# false positive
|
||
|
# shellcheck disable=2154
|
||
|
#
|
||
|
# stop_mdevd()
|
||
|
{
|
||
|
kill "$mdevd_pid"
|
||
|
}
|