blob: d4247ce50c8b5d11a09134ea68b6ddf7785f8e04 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
---
- include_vars: "{{ ansible_os_family }}.yml"
- name: speed up ansible by purging landscape-common
apt: pkg=landscape-common state=absent purge=yes
when: ansible_os_family == "Debian"
- name: update hosts files to all hosts
template: src=hosts dest=/etc/hosts backup=yes
- name: get compass-core hostname
local_action: shell hostname
register: name
- name: get compass-core addr
shell: awk -F'=' '/compass_server/ {print $2}' /etc/compass.conf
register: COMPASS_SERVER
- name: update compass-core name and ip to hosts files
shell: |
echo "# compass" >> /etc/hosts
echo {{ COMPASS_SERVER.stdout_lines[0] }} {{ name.stdout_lines[0] }} >> /etc/hosts
- name: install packages
action: "{{ ansible_pkg_mgr }} name={{ item }} state=latest update_cache=yes"
with_items: packages | union(packages_noarch)
- name: make config template dir exist
file: path=/opt/os_templates state=directory mode=0755
- name: create pip config directory
file: path=~/.pip state=directory
- name: update pip.conf
template: src=pip.conf dest=~/.pip/{{ pip_conf }}
- name: install pip packages
pip: name={{ item }} state=present extra_args='--pre'
with_items: pip_packages
- name: update ntp conf
template: src=ntp.conf dest=/etc/ntp.conf backup=yes
- name: use ntpdate once for initial sync time
shell: ntpdate {{ ntp_server }}
ignore_errors: True
- name: sync sys clock to hard clock
shell: hwclock --systohc
ignore_errors: True
- name: restart services
service: name={{ item }} state=restarted enabled=yes
with_items: services| union(services_noarch)
|