From a1707c7ef0a580bb8f5323ea3d060d0e82d831d7 Mon Sep 17 00:00:00 2001 From: Mate Lakat Date: Wed, 15 Oct 2014 16:56:23 +0200 Subject: [PATCH] XenAPI: Fix vimrc DevStack installs a default minimal .vimrc file for the stack user. Unfortunately the `syntax on` config line is not recognised by the vim installed in DomU. It results in an annoying message being displayed whenever the user is using vi. To avoid this issue, removing the `syntax on` line. Change-Id: I224465cc3cdba3464ea0a9a751f250ecb6ddc9f3 --- tools/xen/prepare_guest.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/tools/xen/prepare_guest.sh b/tools/xen/prepare_guest.sh index cd189db803..7383c91e37 100755 --- a/tools/xen/prepare_guest.sh +++ b/tools/xen/prepare_guest.sh @@ -114,7 +114,6 @@ function setup_vimrc { if [ ! -e $1 ]; then # Simple but usable vimrc cat > $1 <