summaryrefslogtreecommitdiffstats
path: root/roles/os_env_extras/tasks/main.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'roles/os_env_extras/tasks/main.yaml')
-rw-r--r--roles/os_env_extras/tasks/main.yaml17
1 files changed, 17 insertions, 0 deletions
diff --git a/roles/os_env_extras/tasks/main.yaml b/roles/os_env_extras/tasks/main.yaml
new file mode 100644
index 000000000..96b12ad5b
--- /dev/null
+++ b/roles/os_env_extras/tasks/main.yaml
@@ -0,0 +1,17 @@
+---
+# environment configuration 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