summaryrefslogtreecommitdiffstats
path: root/roles/os_utils
diff options
context:
space:
mode:
authorMatt Woodson <mwoodson@redhat.com>2016-02-26 09:55:07 -0500
committerMatt Woodson <mwoodson@redhat.com>2016-02-26 09:55:07 -0500
commit6f86f71e08a4b1e442a9e33b317c0c37451eed80 (patch)
tree798fa2dbdb835b2d1a2ffe98f5c1bc6ae3ec87fc /roles/os_utils
parent625addec56337b940dd72ac187f3e9f3f652178e (diff)
downloadopenshift-6f86f71e08a4b1e442a9e33b317c0c37451eed80.tar.gz
openshift-6f86f71e08a4b1e442a9e33b317c0c37451eed80.tar.bz2
openshift-6f86f71e08a4b1e442a9e33b317c0c37451eed80.tar.xz
openshift-6f86f71e08a4b1e442a9e33b317c0c37451eed80.zip
added os_utils, os_reboot_server role; removed containerization stuff from the updated
Diffstat (limited to 'roles/os_utils')
-rw-r--r--roles/os_utils/tasks/main.yaml17
1 files changed, 17 insertions, 0 deletions
diff --git a/roles/os_utils/tasks/main.yaml b/roles/os_utils/tasks/main.yaml
new file mode 100644
index 000000000..346f6566f
--- /dev/null
+++ b/roles/os_utils/tasks/main.yaml
@@ -0,0 +1,17 @@
+---
+# Utility packages that make things helpful
+
+- name: Install useful rpm packages
+ action: "{{ ansible_pkg_mgr }} name={{ item }} state=present"
+ with_items:
+ - wget
+ - git
+ - net-tools
+ - bind-utils
+ - iptables-services
+ - bridge-utils
+ - bash-completion
+ - atop
+ - htop
+ - ack
+ - telnet