Added the base for Ansible
This commit is contained in:
parent
11faa27d6d
commit
47719a45ca
@ -4,13 +4,14 @@ A template for an Ansible repository
|
|||||||
|
|
||||||
# Requirements
|
# Requirements
|
||||||
|
|
||||||
You need to have `ssh` and `python3` installed
|
You need to have `ssh` and `python3` installed. If you want to access a server using username and password you need to install `sshpass` as well
|
||||||
|
|
||||||
To use this repository run:
|
To use this repository run:
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
git clone https://git.nicolabelluti.me/nicolabelluti/template-ansible
|
git clone https://git.nicolabelluti.me/nicolabelluti/template-ansible
|
||||||
cd template-ansible
|
cd template-ansible
|
||||||
|
|
||||||
python -m venv .venv
|
python -m venv .venv
|
||||||
source .venv/bin/activate
|
source .venv/bin/activate
|
||||||
pip install -r requirements.txt
|
pip install -r requirements.txt
|
||||||
|
1057
ansible.cfg
Normal file
1057
ansible.cfg
Normal file
File diff suppressed because it is too large
Load Diff
8
inventory/test-inventory.yml
Normal file
8
inventory/test-inventory.yml
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
test-hosts:
|
||||||
|
hosts:
|
||||||
|
127.0.0.1:
|
||||||
|
127.0.0.2:
|
||||||
|
127.0.0.3:
|
||||||
|
vars:
|
||||||
|
ansible_user: username
|
||||||
|
ansible_ssh_pass: password
|
4
playbooks/test_playbook.yml
Normal file
4
playbooks/test_playbook.yml
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
- name: Test Playbook
|
||||||
|
hosts: test-hosts
|
||||||
|
roles:
|
||||||
|
- role: test-role
|
6
roles/test-role/tasks/main.yml
Normal file
6
roles/test-role/tasks/main.yml
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
- name: Ping my hosts
|
||||||
|
ansible.builtin.ping:
|
||||||
|
|
||||||
|
- name: Print message
|
||||||
|
ansible.builtin.debug:
|
||||||
|
msg: Hello, world!
|
Loading…
x
Reference in New Issue
Block a user