stud

study spacejunk
Log | Files | Refs | LICENSE

commit 1afbaf0126743c41e062f01549419683d7e0da93 (tree)
parent 4eb69cc4f1e1a9d5cb1babb992d0488021fff50b
Author: Motiejus Jakštys <desired.mta@gmail.com>
Date:   Wed, 11 Dec 2019 00:00:02 +0200

fix ordering

Diffstat:
Minstall/eoan/Vagrantfile | 23++++++++++++-----------
1 file changed, 12 insertions(+), 11 deletions(-)

diff --git a/install/eoan/Vagrantfile b/install/eoan/Vagrantfile @@ -6,23 +6,24 @@ Vagrant.configure("2") do |config| end config.vm.provision "shell", inline: <<-SHELL - mkdir -p .ssh .vnc - curl https://github.com/motiejus.keys >> .ssh/authorized_keys - SHELL - - config.vm.provision "file", source: "xsession", destination: ".vnc/xsession" - - # my geom: 2560x1600 - # vncserver -geometry 1280x800 small window - # vncserver -geometry 1920x1200 small letters - # vncserver -geometry 1536x960 great - config.vm.provision "shell", inline: <<-SHELL apt-get update apt-get install -y \ qgis freecad \ stow openbox-lxde-session lxterminal tightvncserver ipython3 \ tree + SHELL + + config.vm.provision "shell", privileged: false, inline: <<-SHELL + mkdir -p .ssh .vnc + curl https://github.com/motiejus.keys >> .ssh/authorized_keys git clone https://github.com/motiejus/dotfiles.git .dotfiles (cd .dotfiles && stow bash tmux vim) SHELL + + # my geom: 2560x1600 + # vncserver -geometry 1280x800 small window + # vncserver -geometry 1920x1200 small letters + # vncserver -geometry 1536x960 great + config.vm.provision "file", source: "xsession", destination: ".vnc/xsession" + end