limit search depth for apkovl file
This commit is contained in:
parent
6b903b2670
commit
aa371a2e0c
Binary file not shown.
|
@ -8,7 +8,7 @@ exec 1>/dev/console 2>&1
|
|||
logger -st ${0##*/} "Alpine Linux headless bootstrap v$VERSION by macmpi"
|
||||
|
||||
mkdir /tmp/.trash
|
||||
ovlpath=$( find /media -type d -path '*/.*' -prune -o -type f -name *.apkovl.tar.gz -exec dirname {} \; | head -1 )
|
||||
ovlpath=$( find /media -maxdepth 2 -type d -path '*/.*' -prune -o -type f -name *.apkovl.tar.gz -exec dirname {} \; | head -1 )
|
||||
|
||||
|
||||
## Setup Network interfaces
|
||||
|
|
Loading…
Reference in New Issue