11 lines
144 B
Bash
11 lines
144 B
Bash
# vim: set ft=sh:
|
|
# shellcheck shell=sh
|
|
#
|
|
# false positive
|
|
# shellcheck disable=2154
|
|
#
|
|
# stop_systemd_udevd()
|
|
{
|
|
kill "$systemd_udevd_pid"
|
|
}
|