summaryrefslogtreecommitdiff
path: root/roles/common
diff options
context:
space:
mode:
authorElizabeth Hunt <elizabeth.hunt@simponic.xyz>2024-01-02 19:05:01 -0500
committerElizabeth Hunt <elizabeth.hunt@simponic.xyz>2024-01-02 19:29:46 -0500
commitb0a563db34c7ac86f36c3f293ea8610de1c8a35c (patch)
treeb82cc3741cdb34d871eb17e68b7f894fbc0cbe3c /roles/common
parentc6a770bd1a6cab43ec4282043bf4f5d6e175c19c (diff)
downloadoldinfra-b0a563db34c7ac86f36c3f293ea8610de1c8a35c.tar.gz
oldinfra-b0a563db34c7ac86f36c3f293ea8610de1c8a35c.zip
finish headscale setup
Diffstat (limited to 'roles/common')
-rw-r--r--roles/common/tasks/main.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/roles/common/tasks/main.yml b/roles/common/tasks/main.yml
index 1d2e987..7c97505 100644
--- a/roles/common/tasks/main.yml
+++ b/roles/common/tasks/main.yml
@@ -22,10 +22,11 @@
- name: install UFW
apt: name=ufw state=latest
-- name: allow ssh from everywhere
+- name: allow ssh from everywhere and enable
ufw:
rule: allow
name: OpenSSH
+ state: enabled
- name: restart ufw
service: name=ufw state=restarted enabled=yes