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.yaml33
1 files changed, 0 insertions, 33 deletions
diff --git a/roles/base_os/tasks/main.yaml b/roles/base_os/tasks/main.yaml
deleted file mode 100644
index 51fe1e5b6..000000000
--- a/roles/base_os/tasks/main.yaml
+++ /dev/null
@@ -1,33 +0,0 @@
----
-# basic role, configures irbrc, vimrc
-
-- name: Ensure irbrc is installed for user root
- copy:
- src: irbrc
- dest: /root/.irbrc
-
-- name: Ensure vimrc is installed for user root
- copy:
- src: vimrc
- dest: /root/.vimrc
-
-- name: Bash Completion
- 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