Updatred the hosts file and starting windows testing
ignoring hosts as sensitive data will be stored in it. Copy hosts.template to hosts and update the file for local use.
This commit is contained in:
parent
1921d8e077
commit
2293051d22
4
.gitignore
vendored
4
.gitignore
vendored
@ -1 +1,3 @@
|
||||
*.retry
|
||||
*.retry
|
||||
.DS_Store
|
||||
hosts
|
||||
|
18
hosts.template
Normal file
18
hosts.template
Normal file
@ -0,0 +1,18 @@
|
||||
[linux]
|
||||
192.168.0.60
|
||||
|
||||
[linux:vars]
|
||||
ansible_user=ansible
|
||||
ansible_connection=ssh
|
||||
ansible_password=
|
||||
|
||||
[windows]
|
||||
192.168.0.2
|
||||
|
||||
[windows:vars]
|
||||
ansible_user=ansible
|
||||
ansible_password=
|
||||
ansible_connection=winrm
|
||||
ansible_port=5986
|
||||
ansible_winrm_scheme=https
|
||||
ansible_winrm_server_cert_validation=ignore
|
12
playbook/linux/docker/deployOwnCloud.yml
Normal file
12
playbook/linux/docker/deployOwnCloud.yml
Normal file
@ -0,0 +1,12 @@
|
||||
|
||||
- name: Deploy OwnCloud
|
||||
hosts: linux
|
||||
become_method: sudo
|
||||
|
||||
tasks:
|
||||
- name: Check if docker is installed.
|
||||
apt:
|
||||
name: docker
|
||||
state: present
|
||||
|
||||
|
7
playbook/windows/InstallSecurityUpdates.yml
Normal file
7
playbook/windows/InstallSecurityUpdates.yml
Normal file
@ -0,0 +1,7 @@
|
||||
|
||||
- name: Check for updates
|
||||
hosts: windows
|
||||
|
||||
tasks:
|
||||
- name:
|
||||
|
Loading…
Reference in New Issue
Block a user