1
0
Fork 0

add wait for ssh to the playbook

This commit is contained in:
Von Random 2025-01-20 00:10:37 +02:00
parent e2423e7e92
commit df40793c12
2 changed files with 10 additions and 2 deletions

View file

@ -1,5 +1,6 @@
[defaults]
inventory = inventory.yml
interpreter_python = /usr/bin/python3
remote_user = andrei
private_key_file = id_ed25519_yatf

View file

@ -1,9 +1,16 @@
---
- name: Wait for ssh
gather_facts: false
hosts: all
tasks:
- name: check 22/tcp
ansible.builtin.wait_for:
port: 22
connect_timeout: 30
- name: Configure nginx
become: true
hosts: all
vars:
ansible_python_interpreter: /usr/bin/python3
tasks:
- name: install nginx
ansible.builtin.apt: