summaryrefslogtreecommitdiff
path: root/recipes-core
diff options
context:
space:
mode:
authorJohn Klug <john.klug@multitech.com>2017-10-13 15:36:55 -0500
committerJohn Klug <john.klug@multitech.com>2017-10-13 15:36:55 -0500
commitc7748b2439d1dfe6d8812ee220a2bda17a337b47 (patch)
treef870b4cf1c1611bbe1480dcf104e786689990ac8 /recipes-core
parent60dac2846def5222a502b08e5172eafe5869cdd9 (diff)
downloadmeta-mlinux-atmel-c7748b2439d1dfe6d8812ee220a2bda17a337b47.tar.gz
meta-mlinux-atmel-c7748b2439d1dfe6d8812ee220a2bda17a337b47.tar.bz2
meta-mlinux-atmel-c7748b2439d1dfe6d8812ee220a2bda17a337b47.zip
/run can have mount points, so stay in /run
Diffstat (limited to 'recipes-core')
-rwxr-xr-xrecipes-core/busybox/files/ifplugd.init2
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]}