Sha256: 3cef3322977f3b1a7cf21a1305821eb2045a586b194e6a1710e9024f0f715bd0
Contents?: true
Size: 511 Bytes
Versions: 2
Compression:
Stored size: 511 Bytes
Contents
Vagrant.configure('2') do |config| config.vm.box = 'debian-wheezy' config.vm.box_url = 'https://dl.dropboxusercontent.com/u/86066173/debian-wheezy.box' { 80 => 8080 }.each do |guest, host| config.vm.network :forwarded_port, guest: guest, host: host end config.vm.provision :shell, inline: <<-SCRIPT set -x adduser --disabled-login pi echo -ne "raspberry\nraspberry\n" | passwd pi grep -e "^pi " /etc/sudoers || echo "pi ALL=NOPASSWD:ALL" >> /etc/sudoers SCRIPT end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
whipped-cream-0.2.0.beta1 | Vagrantfile |
whipped-cream-0.1.1 | Vagrantfile |