summaryrefslogtreecommitdiffstats
path: root/compass/deploy/ansible/roles/common/tasks/main.yml
diff options
context:
space:
mode:
authorTim Rozet <trozet@redhat.com>2015-09-08 14:57:39 +0000
committerGerrit Code Review <gerrit@172.30.200.206>2015-09-08 14:57:39 +0000
commite65ed372ee84b1f634ec24002fb7bfd7d48fd7e7 (patch)
treeb56c3f4dae40c8efab7ddf177c7ae9475d7cf16e /compass/deploy/ansible/roles/common/tasks/main.yml
parent7f8c963b4dbcc1e57e97e2637ad5a639594319fa (diff)
parent8f49d7a5efc0e847ecffcb05f6aff2186d8cecc9 (diff)
Merge "Merge branch 'master' into merge-master-arno" into stable/arno
Diffstat (limited to 'compass/deploy/ansible/roles/common/tasks/main.yml')
-rw-r--r--compass/deploy/ansible/roles/common/tasks/main.yml28
1 files changed, 28 insertions, 0 deletions
diff --git a/compass/deploy/ansible/roles/common/tasks/main.yml b/compass/deploy/ansible/roles/common/tasks/main.yml
new file mode 100644
index 0000000..ce595f5
--- /dev/null
+++ b/compass/deploy/ansible/roles/common/tasks/main.yml
@@ -0,0 +1,28 @@
+---
+- name: install ubuntu-cloud-keyring(ubuntu)
+ apt: name={{ item }} state=latest
+ with_items:
+ - ubuntu-cloud-keyring
+
+- name: update hosts files to all hosts
+ template: src=hosts
+ dest=/etc/hosts
+ backup=yes
+
+- name: install common packages
+ apt: name={{ item }} state=latest
+ with_items:
+ - python-pip
+ - python-dev
+ - python-mysqldb
+ - ntp
+
+- name: restart ntp
+ command: su -s /bin/sh -c "service ntp stop; ntpd -gq; hwclock --systohc"
+ ignore_errors: True
+
+- name: update ntp conf
+ template: src=ntp.conf dest=/etc/ntp.conf backup=yes
+
+- name: restart ntp
+ service: name=ntp state=restarted enabled=yes