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:
1
drupal/Vagrantfile
vendored
1
drupal/Vagrantfile
vendored
@@ -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
|
||||
|
@@ -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 }}"
|
||||
|
||||
|
1
includes/Vagrantfile
vendored
1
includes/Vagrantfile
vendored
@@ -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
|
||||
|
@@ -1,5 +1,6 @@
|
||||
---
|
||||
- hosts: all
|
||||
become: yes
|
||||
|
||||
vars_files:
|
||||
- vars.yml
|
||||
|
Reference in New Issue
Block a user