Sergio Slobodrian | ba9cbd8 | 2017-06-22 11:45:49 -0400 | [diff] [blame] | 1 | - name: Ansible repository is available |
| 2 | apt_repository: |
| 3 | repo: 'ppa:ansible/ansible' |
| 4 | tags: [installer] |
Sergio Slobodrian | ee417fa | 2017-08-11 09:34:50 -0400 | [diff] [blame] | 5 | |
Sergio Slobodrian | bcd30b1 | 2017-08-22 22:32:00 -0400 | [diff] [blame] | 6 | - name: Ansible is present |
Sergio Slobodrian | ba9cbd8 | 2017-06-22 11:45:49 -0400 | [diff] [blame] | 7 | apt: |
| 8 | name: ansible |
| 9 | state: latest |
| 10 | force: yes |
| 11 | tags: [installer] |
Sergio Slobodrian | ee417fa | 2017-08-11 09:34:50 -0400 | [diff] [blame] | 12 | |
Sergio Slobodrian | ba9cbd8 | 2017-06-22 11:45:49 -0400 | [diff] [blame] | 13 | - name: Installer files and directories are copied |
| 14 | synchronize: |
| 15 | src: "{{ cord_home }}/incubator/voltha/{{ item }}" |
| 16 | dest: /home/vinstall |
| 17 | archive: no |
| 18 | owner: no |
| 19 | perms: no |
| 20 | recursive: yes |
| 21 | links: yes |
| 22 | with_items: |
Sergio Slobodrian | ba9cbd8 | 2017-06-22 11:45:49 -0400 | [diff] [blame] | 23 | - install/installer.sh |
| 24 | - install/install.cfg |
Sergio Slobodrian | cab0a39 | 2017-07-13 08:42:10 -0400 | [diff] [blame] | 25 | - install/voltha-swarm-start.sh |
| 26 | - install/voltha-swarm-stop.sh |
Sergio Slobodrian | ee417fa | 2017-08-11 09:34:50 -0400 | [diff] [blame] | 27 | - install/get-logs.sh |
Sergio Slobodrian | bcd30b1 | 2017-08-22 22:32:00 -0400 | [diff] [blame] | 28 | - install/get-host-logs.sh |
Sergio Slobodrian | 8684370 | 2017-09-05 23:22:39 -0400 | [diff] [blame] | 29 | - install/sort_packages.sh |
| 30 | - install/sort_packages.py |
| 31 | - install/install_packages.sh |
Sergio Slobodrian | ba9cbd8 | 2017-06-22 11:45:49 -0400 | [diff] [blame] | 32 | - install/ansible |
| 33 | - compose |
Sergio Slobodrian | d49da36 | 2017-08-24 16:54:53 -0400 | [diff] [blame] | 34 | - consul_config/basic.json |
Sergio Slobodrian | ba9cbd8 | 2017-06-22 11:45:49 -0400 | [diff] [blame] | 35 | tags: [installer] |
Sergio Slobodrian | ba9cbd8 | 2017-06-22 11:45:49 -0400 | [diff] [blame] | 36 | |
| 37 | - name: Determine if test mode is active |
| 38 | become: false |
| 39 | local_action: stat path="{{ cord_home }}/incubator/voltha/install/.test" |
| 40 | register: file |
| 41 | ignore_errors: true |
Sergio Slobodrian | ee417fa | 2017-08-11 09:34:50 -0400 | [diff] [blame] | 42 | |
Sergio Slobodrian | ba9cbd8 | 2017-06-22 11:45:49 -0400 | [diff] [blame] | 43 | - name: Test mode file is copied |
| 44 | copy: |
| 45 | src: "{{ cord_home }}/incubator/voltha/install/.test" |
| 46 | dest: /home/vinstall |
| 47 | when: file.stat.exists |
Sergio Slobodrian | ee417fa | 2017-08-11 09:34:50 -0400 | [diff] [blame] | 48 | |
Sergio Slobodrian | 8684370 | 2017-09-05 23:22:39 -0400 | [diff] [blame] | 49 | - name: The installer scripts are made executable |
Sergio Slobodrian | ba9cbd8 | 2017-06-22 11:45:49 -0400 | [diff] [blame] | 50 | file: |
Sergio Slobodrian | 8684370 | 2017-09-05 23:22:39 -0400 | [diff] [blame] | 51 | path: "/home/vinstall/{{ item }}" |
Sergio Slobodrian | ba9cbd8 | 2017-06-22 11:45:49 -0400 | [diff] [blame] | 52 | mode: 0744 |
Sergio Slobodrian | 8684370 | 2017-09-05 23:22:39 -0400 | [diff] [blame] | 53 | with_items: |
| 54 | - installer.sh |
| 55 | - sort_packages.sh |
| 56 | - sort_packages.py |
| 57 | - install_packages.sh |
Sergio Slobodrian | ba9cbd8 | 2017-06-22 11:45:49 -0400 | [diff] [blame] | 58 | tags: [installer] |
Sergio Slobodrian | ee417fa | 2017-08-11 09:34:50 -0400 | [diff] [blame] | 59 | |
Sergio Slobodrian | ba9cbd8 | 2017-06-22 11:45:49 -0400 | [diff] [blame] | 60 | - name: Python docker-py {{ docker_py_version }} package source is available |
| 61 | command: pip download -d /home/vinstall/docker-py "docker-py=={{ docker_py_version }}" |
| 62 | tags: [installer] |
Sergio Slobodrian | ee417fa | 2017-08-11 09:34:50 -0400 | [diff] [blame] | 63 | |
Sergio Slobodrian | ba9cbd8 | 2017-06-22 11:45:49 -0400 | [diff] [blame] | 64 | - name: Python netifaces {{ netifaces_version }} package source is available |
| 65 | command: pip download -d /home/vinstall/netifaces "netifaces=={{ netifaces_version }}" |
| 66 | tags: [installer] |
Sergio Slobodrian | ee417fa | 2017-08-11 09:34:50 -0400 | [diff] [blame] | 67 | |
Sergio Slobodrian | ba9cbd8 | 2017-06-22 11:45:49 -0400 | [diff] [blame] | 68 | - name: Deb file directory doesn't exist |
| 69 | file: |
| 70 | path: /home/vinstall/deb_files |
| 71 | state: absent |
| 72 | tags: [installer] |
Sergio Slobodrian | ee417fa | 2017-08-11 09:34:50 -0400 | [diff] [blame] | 73 | |
Sergio Slobodrian | ba9cbd8 | 2017-06-22 11:45:49 -0400 | [diff] [blame] | 74 | - name: Deb files are saved. |
| 75 | command: cp -r /var/cache/apt/archives /home/vinstall |
| 76 | tags: [installer] |
Sergio Slobodrian | ee417fa | 2017-08-11 09:34:50 -0400 | [diff] [blame] | 77 | |
Sergio Slobodrian | ba9cbd8 | 2017-06-22 11:45:49 -0400 | [diff] [blame] | 78 | - name: Deb file directory is renamed |
| 79 | command: mv /home/vinstall/archives /home/vinstall/deb_files |
| 80 | tags: [installer] |
Sergio Slobodrian | ee417fa | 2017-08-11 09:34:50 -0400 | [diff] [blame] | 81 | |
Sergio Slobodrian | 5727e98 | 2017-06-28 21:02:27 -0400 | [diff] [blame] | 82 | - name: Installer directories are owned by vinstall |
| 83 | file: |
| 84 | path: /home/vinstall/{{ item }} |
| 85 | owner: vinstall |
| 86 | group: vinstall |
| 87 | recurse: yes |
| 88 | follow: no |
| 89 | with_items: |
| 90 | - ansible |
| 91 | - compose |
Sergio Slobodrian | 5727e98 | 2017-06-28 21:02:27 -0400 | [diff] [blame] | 92 | - .ansible |
| 93 | - deb_files |
| 94 | - docker-py |
| 95 | - netifaces |
| 96 | tags: [installer] |
Sergio Slobodrian | ee417fa | 2017-08-11 09:34:50 -0400 | [diff] [blame] | 97 | |
Sergio Slobodrian | 5727e98 | 2017-06-28 21:02:27 -0400 | [diff] [blame] | 98 | - name: Installer files are owned by vinstall |
| 99 | file: |
| 100 | path: /home/vinstall/{{ item }} |
| 101 | owner: vinstall |
| 102 | group: vinstall |
| 103 | follow: no |
| 104 | with_items: |
| 105 | - installer.sh |
| 106 | - install.cfg |
Sergio Slobodrian | cab0a39 | 2017-07-13 08:42:10 -0400 | [diff] [blame] | 107 | - voltha-swarm-start.sh |
| 108 | - voltha-swarm-stop.sh |
Sergio Slobodrian | ee417fa | 2017-08-11 09:34:50 -0400 | [diff] [blame] | 109 | - get-logs.sh |
Sergio Slobodrian | bcd30b1 | 2017-08-22 22:32:00 -0400 | [diff] [blame] | 110 | - get-host-logs.sh |
Sergio Slobodrian | 5727e98 | 2017-06-28 21:02:27 -0400 | [diff] [blame] | 111 | - docker-compose-Linux-x86_64 |
| 112 | tags: [installer] |