Skip to content

Commit b78b2ba

Browse files
committed
Fixes #198: Update Drupal example to run 8.8.x.
1 parent f1adb5c commit b78b2ba

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

drupal/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ Note: *If there are any errors during the course of running `vagrant up`, and it
3939

4040
- To shut down the virtual machine, enter `vagrant halt` in the Terminal in the same folder that has the `Vagrantfile`. To destroy it completely (if you want to save a little disk space, or want to rebuild it from scratch with `vagrant up` again), type in `vagrant destroy`.
4141
- You can change the version of Drupal installed by editing the variables within `vars.yml`.
42-
- You can either use Drush or Git to download Drupal (either way results in the same thing); see the commented-out Drush download method in `playbook.yml`.
4342
- Find out more about local development with Vagrant + VirtualBox + Ansible in this presentation: [Local Development Environments - Vagrant, VirtualBox and Ansible](http://www.slideshare.net/geerlingguy/local-development-on-virtual-machines-vagrant-virtualbox-and-ansible).
4443
- Learn about how Ansible can accelerate your ability to innovate and manage your infrastructure by reading [Ansible for DevOps](https://www.ansiblefordevops.com/).
4544

drupal/provisioning/vars.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
# The core version you want to use (e.g. 8.5.x, 8.6.x).
3-
drupal_core_version: "8.5.x"
2+
# The core version you want to use (e.g. 8.8.x, 8.9.x).
3+
drupal_core_version: "8.8.x"
44

55
# The path where Drupal will be downloaded and installed.
66
drupal_core_path: "/var/www/drupal-{{ drupal_core_version }}-dev"

includes/provisioning/vars.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
# The core version you want to use (e.g. 8.5.x, 8.6.x).
3-
drupal_core_version: "8.5.x"
2+
# The core version you want to use (e.g. 8.8.x, 8.9.x).
3+
drupal_core_version: "8.8.x"
44

55
# The path where Drupal will be downloaded and installed.
66
drupal_core_path: "/var/www/drupal-{{ drupal_core_version }}-dev"

0 commit comments

Comments
 (0)