diff options
author | John Klug <john.klug@multitech.com> | 2017-10-13 15:36:55 -0500 |
---|---|---|
committer | John Klug <john.klug@multitech.com> | 2017-10-13 15:36:55 -0500 |
commit | c7748b2439d1dfe6d8812ee220a2bda17a337b47 (patch) | |
tree | f870b4cf1c1611bbe1480dcf104e786689990ac8 /recipes-core/busybox/files | |
parent | 60dac2846def5222a502b08e5172eafe5869cdd9 (diff) | |
download | meta-mlinux-c7748b2439d1dfe6d8812ee220a2bda17a337b47.tar.gz meta-mlinux-c7748b2439d1dfe6d8812ee220a2bda17a337b47.tar.bz2 meta-mlinux-c7748b2439d1dfe6d8812ee220a2bda17a337b47.zip |
/run can have mount points, so stay in /run
Diffstat (limited to 'recipes-core/busybox/files')
-rwxr-xr-x | recipes-core/busybox/files/ifplugd.init | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-core/busybox/files/ifplugd.init b/recipes-core/busybox/files/ifplugd.init index 97d6970..87f2408 100755 --- a/recipes-core/busybox/files/ifplugd.init +++ b/recipes-core/busybox/files/ifplugd.init @@ -26,7 +26,7 @@ startdaemon(){ } stopdaemon(){ echo -n "Stopping ifplugd: " - PIDS=($(find /run -name 'ifplugd.*.pid')) + PIDS=($(find /run -xdev -name 'ifplugd.*.pid')) ((i=0)) while ((i < ${#PIDS[@]})) ; do PF=${PIDS[$i]} |