├── .gitignore ├── Makefile ├── README.md ├── Vagrantfile ├── ansible.cfg └── cm ├── requirements.yml └── vagrant.yml /.gitignore: -------------------------------------------------------------------------------- 1 | tmp 2 | .vagrant 3 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexlet-boilerplates/vagrant-ansible/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexlet-boilerplates/vagrant-ansible/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexlet-boilerplates/vagrant-ansible/HEAD/Vagrantfile -------------------------------------------------------------------------------- /ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexlet-boilerplates/vagrant-ansible/HEAD/ansible.cfg -------------------------------------------------------------------------------- /cm/requirements.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | - src: angstwad.docker_ubuntu 4 | -------------------------------------------------------------------------------- /cm/vagrant.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexlet-boilerplates/vagrant-ansible/HEAD/cm/vagrant.yml --------------------------------------------------------------------------------