From 3e9639d4b78354df16444d1a3316c459fa04fe6b Mon Sep 17 00:00:00 2001 From: Bec White Date: Mon, 18 May 2020 17:23:42 -0500 Subject: [PATCH] Remove README sections on 100% custom provisioning. --- README.md | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index 2c7ebb3..c678843 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ _Note: If you are setting up a new project, you likely want to start with [drupa * [vagrant-hostmanager](https://github.com/devopsgroup-io/vagrant-hostmanager) * [vagrant-auto_network](https://github.com/oscar-stack/vagrant-auto_network) * [Virtualbox](https://www.virtualbox.org/wiki/Downloads) >= 5.0 -* [Ansible](https://github.com/ansible/ansible) +* [Ansible](https://github.com/ansible/ansible) >= 2.9 ## Installation @@ -39,8 +39,7 @@ To use the-vagrant on a project, you will need to: * The project web root * Enable Solr * Enable HTTPS - * Make a project-specific copy of the Ansible roles and a copy of the default playbook - * OR make a project-specific Ansible playbook to be run _in addition_ to the default playbook + * Add a project-specific Ansible playbook to be run in addition to the default playbook 3. Check in and commit the new Vagrantfile to git If you need to change your configuration later, you can re-run the install script, or edit the `Vagrantfile` directly. @@ -84,16 +83,6 @@ By default, the-vagrant references ansible roles from the package at `vendor/pal 4. Check in and commit this new `provisioning` directory and updated `Vagrantfile` to git 5. Add or update the roles and playbook as necessary. -### 100% custom provisioning - -1. Re-run the install script: `vendor/bin/the-vagrant-installer` -2. When you are prompted to copy the Ansible roles, reply `Y`: - - > Copy Ansible roles into your project for customization (Y,n) [n]? -3. This will create a new `provisioning` directory in your project that contains the Ansible playbook and roles. Your `Vagrantfile` will refer to this playbook instead of the one in the `vendor` directory. -4. Check in and commit this new `provisioning` directory and updated `Vagrantfile` to git -5. Add or update the roles and playbook as necessary. - ### Tips for developing Ansible playbooks and roles * The Ansible documentation has an [Intro to Playbooks](https://docs.ansible.com/ansible/latest/user_guide/playbooks_intro.html)