12 lines
229 B
Bash
12 lines
229 B
Bash
# vim: set ft=sh:
|
|
# shellcheck shell=sh
|
|
#
|
|
# false positive
|
|
# shellcheck disable=2154,2034
|
|
{
|
|
[ "$break" = devmgr ] && { print "break before run_mdevd()"; sh; }
|
|
|
|
mdevd 2> /dev/null & mdevd_pid="$!"
|
|
mdevd-coldplug
|
|
}
|