diff options
author | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2025-08-01 02:40:12 -0400 |
---|---|---|
committer | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2025-08-01 02:40:12 -0400 |
commit | 6bc2e3f47c674852614a50404e9fb50ff7dedfac (patch) | |
tree | e3a08a4669ffd01446d17133f1d764bd0c202162 | |
parent | d5cb2ce197a1d939cf2427587b990e02e7a5f15b (diff) | |
download | mmt-infra-6bc2e3f47c674852614a50404e9fb50ff7dedfac.tar.gz mmt-infra-6bc2e3f47c674852614a50404e9fb50ff7dedfac.zip |
Enables ssh from the outside world
-rw-r--r-- | playbooks/roles/common/tasks/main.yml | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/playbooks/roles/common/tasks/main.yml b/playbooks/roles/common/tasks/main.yml index f32893a..4648a62 100644 --- a/playbooks/roles/common/tasks/main.yml +++ b/playbooks/roles/common/tasks/main.yml @@ -23,6 +23,9 @@ - vim - git - rsync + - liblz4-dev + - libzstd-dev + - libxxhash-dev state: latest update_cache: true notify: @@ -66,11 +69,7 @@ state: present - name: Allow ssh from rfc1918 networks - loop: "{{ rfc1918_networks }}" community.general.ufw: rule: allow - name: "OpenSSH" - from: "{{ item }}" + port: 22 state: "enabled" - notify: - - Reload ufw |