From f0f15ab19131e85bfcef40189b9542fb294c3082 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Thu, 27 Sep 2007 22:04:11 +0200 Subject: [PATCH] Applied patch from Jesse W. Hathaway to move cow mount rather than binding it on /live/cow. This prevents the /cow mount showing up in /proc/mounts. --- scripts/live | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/live b/scripts/live index 7a82f60..d4b253b 100755 --- a/scripts/live +++ b/scripts/live @@ -971,7 +971,7 @@ setup_unionfs () # shows cow fs on /cow for use by live-snapshot mkdir -p "${rootmnt}/live/cow" - mount -o bind /cow "${rootmnt}/live/cow" + mount -o move /cow "${rootmnt}/live/cow" } check_dev ()