1
0
mirror of https://github.com/geerlingguy/ansible-for-devops.git synced 2024-05-19 06:50:03 +00:00

Fixes in addition to #98 - use https for drupal git repo.

This commit is contained in:
Jeff Geerling
2018-08-08 21:57:19 -05:00
parent 44b80172bc
commit 537cd31d15
4 changed files with 3 additions and 3 deletions

1
drupal/Vagrantfile vendored
View File

@@ -16,6 +16,5 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
# Ansible provisioning.
config.vm.provision "ansible" do |ansible|
ansible.playbook = "provisioning/playbook.yml"
ansible.become = true
end
end

View File

@@ -1,5 +1,6 @@
---
- hosts: all
become: yes
vars_files:
- vars.yml
@@ -141,7 +142,7 @@
- name: Check out Drupal Core to the Apache docroot.
git:
repo: http://git.drupal.org/project/drupal.git
repo: https://git.drupal.org/project/drupal.git
version: "{{ drupal_core_version }}"
dest: "{{ drupal_core_path }}"

View File

@@ -16,6 +16,5 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
# Ansible provisioner.
config.vm.provision "ansible" do |ansible|
ansible.playbook = "provisioning/playbook.yml"
ansible.become = true
end
end

View File

@@ -1,5 +1,6 @@
---
- hosts: all
become: yes
vars_files:
- vars.yml