elasticdog / puppet-sandbox

A Vagrant-based Puppet development environment for creating new modules
MIT License
218 stars 100 forks source link

Remove typo in atlas URL #21

Closed jkapellen closed 8 years ago

jkapellen commented 8 years ago

Typo in the file on line 18; missing second "h" in the url for hashicorp. Breaks "vagrant up" when no ubuntu/trusty64 box already present.

Original

  node_config.vm.box_url = 'https://atlas.hasicorp.com/' + node_config.vm.box

Fixed

  node_config.vm.box_url = 'https://atlas.hashicorp.com/' + node_config.vm.box
elasticdog commented 8 years ago

Thanks...I didn't catch that when merging the last PR and hadn't actually tested.

martialblog commented 8 years ago

Sorry, my bad. I had the box already downloaded, so I did catch that.