summaryrefslogtreecommitdiffstats
path: root/roles/base
diff options
context:
space:
mode:
authorMichael Scherer <misc@ephaone.org>2014-10-15 16:55:11 -0400
committerMichael Scherer <misc@ephaone.org>2014-10-15 16:55:11 -0400
commitdd06fb0a56feba126cce5ef75e84e23eb72fe7aa (patch)
treef20f7774e7d7ce6ec22eeb8d62e510842c613733 /roles/base
parent56599284ed73be3661796003d89c3ed73aa24cbd (diff)
Add playbook and httpd and the rest
Diffstat (limited to 'roles/base')
-rw-r--r--roles/base/tasks/main.yml15
1 files changed, 15 insertions, 0 deletions
diff --git a/roles/base/tasks/main.yml b/roles/base/tasks/main.yml
new file mode 100644
index 0000000..7fd4b66
--- /dev/null
+++ b/roles/base/tasks/main.yml
@@ -0,0 +1,15 @@
+---
+- name: install base rpms
+ yum: pkg={{ item }} state=installed
+ with_items:
+ - screen
+ - htop
+ - iftop
+ - iotop
+ - strace
+ - vim-enhanced
+ - tcpdump
+ - chrony
+
+- service: name=chronyd state=running enabled=yes
+