Merge pull request 'change include to include_tasks' (#8) from include_tasks into main
Reviewed-on: #8
This commit is contained in:
commit
d176c6b13c
2 changed files with 8 additions and 7 deletions
1
Vagrantfile
vendored
1
Vagrantfile
vendored
|
@ -16,5 +16,6 @@ Vagrant.configure("2") do |config|
|
|||
etherpad.vm.network "forwarded_port", guest: 443, host: 4444, host_ip: "192.168.33.8"
|
||||
etherpad.vm.network "forwarded_port", guest: 8080, host: 8081, host_ip: "192.168.33.8"
|
||||
etherpad.vm.network "private_network", ip: "192.168.33.8"
|
||||
config.vm.provision "shell", inline: "apt install acl"
|
||||
end
|
||||
end
|
||||
|
|
|
@ -1,23 +1,23 @@
|
|||
---
|
||||
|
||||
- name: Install dependencies
|
||||
include: installdeps.yml
|
||||
include_tasks: installdeps.yml
|
||||
|
||||
- name: Clone / Update GIT
|
||||
include: git.yml
|
||||
include_tasks: git.yml
|
||||
|
||||
- name: Add user
|
||||
include: user.yml
|
||||
include_tasks: user.yml
|
||||
|
||||
- name: Deploy configuration
|
||||
include: configure.yml
|
||||
include_tasks: configure.yml
|
||||
|
||||
- name: Install Modules
|
||||
include: modules.yml
|
||||
include_tasks: modules.yml
|
||||
|
||||
- name: Use abiword
|
||||
include: abiword.yml
|
||||
include_tasks: abiword.yml
|
||||
when: etherpad_abiword != 'null'
|
||||
|
||||
- name: Systemd
|
||||
include: systemd.yml
|
||||
include_tasks: systemd.yml
|
||||
|
|
Loading…
Reference in a new issue