Advertisement
Guest User

Untitled

a guest
Jun 30th, 2015
241
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. Vagrant.configure(2) do |config|
  2. config.vm.box = "ubuntu/trusty64"
  3. config.vm.provision :shell, inline: <<-SHELL
  4. if [ ! -f ~/.installed ]
  5. then
  6. sudo apt-get update
  7. sudo apt-get -y install texlive
  8. sudo apt-get -y install texlive-lang-cjk
  9. sudo apt-get -y install dvipsk-ja
  10. sudo apt-get -y install gv
  11. sudo apt-get -y install texlive-fonts-recommended texlive-fonts-extra
  12. touch ~/.installed
  13. fi
  14. SHELL
  15. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement