Allow git SSH port.

This commit is contained in:
yohan 2024-10-27 12:40:15 +01:00
parent 0343fd79cc
commit dd724805f7

View File

@ -97,6 +97,15 @@
line: "127.0.0.1 git.{{ DOMAIN }} git"
become: true
- name: Allow git SSH port
ansible.posix.firewalld:
zone: public
port: 2222/tcp
permanent: true
immediate: true
state: enabled
become: true
# A local volume is needed to store restore states
- name: Create /mnt/volumes/restore_states directory if it does not exist
ansible.builtin.file: