summaryrefslogtreecommitdiffstats
path: root/roles/base_os/tasks/main.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'roles/base_os/tasks/main.yaml')
-rw-r--r--roles/base_os/tasks/main.yaml16
1 files changed, 0 insertions, 16 deletions
diff --git a/roles/base_os/tasks/main.yaml b/roles/base_os/tasks/main.yaml
index 51fe1e5b6..aad611f70 100644
--- a/roles/base_os/tasks/main.yaml
+++ b/roles/base_os/tasks/main.yaml
@@ -15,19 +15,3 @@
yum:
pkg: bash-completion
state: installed
-
-- name: Install firewalld
- yum:
- pkg: firewalld
- state: installed
-
-- name: start and enable firewalld service
- service:
- name: firewalld
- state: started
- enabled: yes
- register: result
-
-- name: need to pause here, otherwise the firewalld service starting can sometimes cause ssh to fail
- pause: seconds=10
- when: result | changed