blob: 3d2296e061683cbfdfbbd37274a5a1c6acdeb801 [file] [log] [blame]
Sergio Slobodrianba9cbd82017-06-22 11:45:49 -04001# Note: When the target == "cluster" the installer
2# is running to install voltha in the cluster hosts.
3# Whe the target == "installer" the installer is being
4# created.
5- name: A .ssh directory for the voltha user exists
6 file:
7 #path: "{{ ansible_env['HOME'] }}/.ssh"
8 path: "/home/voltha/.ssh"
9 state: directory
10 owner: voltha
11 group: voltha
12 tags: [cluster_host]
13
14- name: known_hosts file is absent for the voltha user
15 file:
16 path: "/home/voltha/.ssh/known_hosts"
17 state: absent
18 tags: [cluster_host]
19
20- name: Known host checking is disabled
21 copy:
22 src: files/ssh_config
23 dest: "/home/voltha/.ssh/config"
24 owner: voltha
25 group: voltha
26 mode: 0600
27 tags: [cluster_host]
28
29- name: Cluster host keys are propagated to all hosts in the cluster
30 copy:
31 src: files/.keys
32 dest: "/home/voltha"
33 owner: voltha
34 group: voltha
35 mode: 0600
36 tags: [cluster_host]
37
38#- name: Required configuration directories are copied
39# copy:
40# src: "/home/vinstall/{{ item }}"
41# dest: "{{ target_voltha_home }}"
42# owner: voltha
43# group: voltha
44# with_items:
45# - docker-py
46# - netifaces
47# - deb_files
48# when: target == "cluster"
49# tags: [cluster_host]
50
51- name: Required configuration directories are copied
52 synchronize:
53 src: "/home/vinstall/{{ item }}"
54 dest: "{{ target_voltha_home }}"
55 archive: no
56 owner: no
57 perms: no
58 recursive: yes
59 links: yes
60 with_items:
61 - docker-py
62 - netifaces
63 - deb_files
64 tags: [cluster-host]
65
66- name: apt lists are up-to-date
67 copy:
68 src: "/var/lib/apt/lists"
69 dest: "/var/lib/apt"
70 tags: [cluster_host]
71
Sergio Slobodrianf74fa072017-06-28 09:33:24 -040072- name: Dependent software is installed (this can take about 10 Min, DONT'T PANIC, go for coffee instead)
Sergio Slobodrianba9cbd82017-06-22 11:45:49 -040073 command: dpkg -R -i "{{ target_voltha_home }}/deb_files"
74# ignore_errors: true
75 when: target == "cluster"
76 tags: [cluster_host]
77
78#- name: Dependent software is initialized
79# command: apt-get -y -f install
80# when: target == "cluster"
81# tags: [cluster_host]
82
83- name: Python packages are installed
84 command: pip install {{ item }} --no-index --find-links "file://{{ target_voltha_home }}/{{ item }}"
85 with_items:
86 - docker-py
87 - netifaces
88 when: target == "cluster"
89 tags: [cluster_host]
90
91- name: Configuration directories are deleted
92 file:
93 path: "{{ target_voltha_home }}/{{ item }}"
94 state: absent
95 with_items:
96 - docker-py
97 - netifaces
98 - deb_files
99 when: target == "cluster"
100 tags: [cluster_host]
101