lxc-debian using new lxc.mount.entry keyword

Fix script to not add a fstab file.

Signed-off-by: Michel Normand <michel_mno@laposte.net>
Signed-off-by: Daniel Lezcano <dlezcano@fr.ibm.com>
This commit is contained in:
Michel Normand 2009-11-13 11:48:29 +01:00 committed by Daniel Lezcano
parent e7938e9ee3
commit 3f4a86bf0f

View File

@ -156,9 +156,7 @@ lxc.cgroup.devices.allow = c 254:0 rwm
EOF
if [ ! -z "$TMPMNTFILE" ]; then
cat <<EOF >> $CONFFILE
lxc.mount = $TMPMNTFILE
EOF
cat $TMPMNTFILE >> $CONFFILE
fi
}
@ -166,7 +164,7 @@ write_lxc_mounts() {
if [ ! -z "$MNTFILE" ]; then
TMPMNTFILE=$(mktemp lxc.$NAME.XXXXXXXXXX)
cp $MNTFILE $TMPMNTFILE
sed -e 's/^\(.*\)/lxc.mount.entry=&/' $MNTFILE >$TMPMNTFILE
fi
}
@ -316,6 +314,7 @@ create() {
# remove the configuration files
rm -f $CONFFILE
rm -f $TMPMNTFILE
if [ "$RES" != "0" ]; then
echo "Failed to create '$NAME'"