summaryrefslogtreecommitdiffstats
path: root/roles/os_env_extras/tasks/main.yaml
diff options
context:
space:
mode:
authorJason DeTiberus <jdetiber@redhat.com>2015-03-04 17:45:02 -0500
committerJason DeTiberus <jdetiber@redhat.com>2015-03-05 17:38:57 -0500
commitb7008f070afe2629c9ebcbbdf0af3fa1f6ed9d34 (patch)
treeb8f16225ad95f5692fca3d4c61c9f5f6235c732b /roles/os_env_extras/tasks/main.yaml
parent7c90cacef0f5cf61fb8ac3adb905507dd4247d84 (diff)
downloadopenshift-b7008f070afe2629c9ebcbbdf0af3fa1f6ed9d34.tar.gz
openshift-b7008f070afe2629c9ebcbbdf0af3fa1f6ed9d34.tar.bz2
openshift-b7008f070afe2629c9ebcbbdf0af3fa1f6ed9d34.tar.xz
openshift-b7008f070afe2629c9ebcbbdf0af3fa1f6ed9d34.zip
rename base_os role to os_env_extras, move application to end since it just sets environment configs for root user
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