fix ordering

This commit is contained in:
Motiejus Jakštys 2019-12-11 00:00:02 +02:00
parent 4eb69cc4f1
commit 1afbaf0126

View File

@ -5,24 +5,25 @@ Vagrant.configure("2") do |config|
vb.memory = "2048" vb.memory = "2048"
end 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 config.vm.provision "shell", inline: <<-SHELL
apt-get update apt-get update
apt-get install -y \ apt-get install -y \
qgis freecad \ qgis freecad \
stow openbox-lxde-session lxterminal tightvncserver ipython3 \ stow openbox-lxde-session lxterminal tightvncserver ipython3 \
tree 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 git clone https://github.com/motiejus/dotfiles.git .dotfiles
(cd .dotfiles && stow bash tmux vim) (cd .dotfiles && stow bash tmux vim)
SHELL 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 end