Hello community, here is the log from the commit of package kiwi-images-vagrant for openSUSE:Leap:15.2 checked in at 2020-06-11 16:18:35 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Leap:15.2/kiwi-images-vagrant (Old) and /work/SRC/openSUSE:Leap:15.2/.kiwi-images-vagrant.new.3606 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kiwi-images-vagrant" Thu Jun 11 16:18:35 2020 rev:5 rq:813272 version:15.2 Changes: -------- --- /work/SRC/openSUSE:Leap:15.2/kiwi-images-vagrant/15.2.changes 2020-03-24 19:05:20.597442895 +0100 +++ /work/SRC/openSUSE:Leap:15.2/.kiwi-images-vagrant.new.3606/15.2.changes 2020-06-11 16:21:02.183229824 +0200 @@ -1,0 +2,5 @@ +Wed Jun 10 10:10:24 UTC 2020 - Dan Čermák <[email protected]> + +- Only modify /etc/vimrc in config.sh if it exists + +------------------------------------------------------------------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ config.sh ++++++ --- /var/tmp/diff_new_pack.d7gD2v/_old 2020-06-11 16:21:02.579230895 +0200 +++ /var/tmp/diff_new_pack.d7gD2v/_new 2020-06-11 16:21:02.579230895 +0200 @@ -75,8 +75,12 @@ #====================================== # only basic version of vim is # installed; no syntax highlighting +# only perform the modification if +# /etc/vimrc is actually there #-------------------------------------- -sed -i -e's/^syntax on/" syntax on/' /etc/vimrc +if [ -f /etc/vimrc ]; then + sed -i -e's/^syntax on/" syntax on/' /etc/vimrc +fi function vagrantSetup { # This function configures the image to work as a vagrant box.
