summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xmeta/recipes-core/volatile-binds/files/mount-copybind2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-core/volatile-binds/files/mount-copybind b/meta/recipes-core/volatile-binds/files/mount-copybind
index aad022c6e4..8bbb406b3a 100755
--- a/meta/recipes-core/volatile-binds/files/mount-copybind
+++ b/meta/recipes-core/volatile-binds/files/mount-copybind
@@ -48,7 +48,7 @@ if [ -d "$mountpoint" ]; then
48 # If that fails, fall back to slower copy. 48 # If that fails, fall back to slower copy.
49 if command -v selinuxenabled > /dev/null 2>&1; then 49 if command -v selinuxenabled > /dev/null 2>&1; then
50 if selinuxenabled; then 50 if selinuxenabled; then
51 mountcontext=",rootcontext=$(matchpathcon -n $mountpoint)" 51 mountcontext=",rootcontext=$(matchpathcon -n "$mountpoint")"
52 fi 52 fi
53 fi 53 fi
54 if ! mount -t overlay overlay -olowerdir="$mountpoint",upperdir="$spec",workdir="$overlay_workdir""$mountcontext" "$mountpoint" > /dev/null 2>&1; then 54 if ! mount -t overlay overlay -olowerdir="$mountpoint",upperdir="$spec",workdir="$overlay_workdir""$mountcontext" "$mountpoint" > /dev/null 2>&1; then