From: Jiri Slaby Date: Tue, 19 Feb 2013 12:44:53 +0000 (+0100) Subject: lxc-opensuse: print \n from one echo X-Git-Tag: lxc-0.9.0.rc1~2^2~36 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=285ee6b8f120ebb8f37578081fb4bdc400538306;p=thirdparty%2Flxc.git lxc-opensuse: print \n from one echo Otherwise the output looks like: Copying rootfs to /var/lib/lxc/tomcat/rootfs ...Please change root-password ! Signed-off-by: Serge Hallyn --- diff --git a/templates/lxc-opensuse.in b/templates/lxc-opensuse.in index 1829ddf01..d8aa2a16a 100644 --- a/templates/lxc-opensuse.in +++ b/templates/lxc-opensuse.in @@ -188,7 +188,7 @@ copy_opensuse() rootfs=$3 # make a local copy of the mini opensuse - echo -n "Copying rootfs to $rootfs ..." + echo "Copying rootfs to $rootfs ..." mkdir -p $rootfs rsync -Ha $cache/rootfs-$arch/ $rootfs/ || return 1 return 0