/magento-test-install

Anisble playbooks to install Magento on Vagrant

Apache License 2.0Apache-2.0

Magento Test Install

Example of Vagrantfile:

Vagrant.configure("2") do |config|
    config.vm.box = "ubuntu/trusty64"
    config.vm.network "public_network", auto_config: true
  
    config.vm.provision "ansible" do |ansible|
        ansible.playbook = "playbooks/init.yml"
    end
  
    config.vm.provision "ansible" do |ansible|
        ansible.verbose = "vv"
        ansible.playbook = "playbooks/magento/install-1.6.yml"
    end
  
    config.vm.provision "shell", run: "always" do |shell|
        shell.inline = "ifconfig"
    end
  
    config.vm.synced_folder "magento/", "/var/www/magento", :mount_options => ['dmode=777', 'fmode=777']
end

Requirments