
Skip the - vs _ name and fix the missing permissions on the rc file Change-Id: I31409101a6e287b9ffeff1e5f544f2545a476ff5
72 lines
2.0 KiB
YAML
72 lines
2.0 KiB
YAML
---
|
|
- name: Create working directory
|
|
file:
|
|
path: "{{ atos_client_working_dir }}"
|
|
state: directory
|
|
mode: 0755
|
|
|
|
- name: Download ATOS client ISO
|
|
get_url:
|
|
url: "{{ atos_client_iso_location }}"
|
|
dest: "{{ atos_client_working_dir }}/{{ atos_client_iso_name }}"
|
|
force: no
|
|
|
|
- name: Mount the iso for ATOS
|
|
mount:
|
|
path: /mnt/atos_iso
|
|
src: "{{ atos_client_working_dir }}/{{ atos_client_iso_name }}"
|
|
fstype: iso9660
|
|
state: mounted
|
|
|
|
- name: check for client software installation
|
|
stat: path=/etc/proteccio/proteccio.rc.example
|
|
register: atos_client
|
|
|
|
- name: install client software
|
|
expect:
|
|
chdir: /mnt/atos_iso/Linux
|
|
command: ./install.sh
|
|
responses:
|
|
"Select Language: enter f \\(french\\) or e \\(english\\) \\[f\\]": "e"
|
|
"Do you want to install the TrustWay Proteccio Administration Application \\(y/n\\)\\? \\[n\\]": "n"
|
|
"Press the <Enter> key to exit the installation program": "\n"
|
|
when: not atos_client.stat.exists
|
|
|
|
- name: allow using legacy variables for backwards compatibility
|
|
set_fact:
|
|
args:
|
|
atos_hsms:
|
|
- name: Legacy variables HSM
|
|
server_cert_location: "{{ atos_server_cert_location }}"
|
|
ip: "{{ atos_hsm_ip_address }}"
|
|
when: atos_hsms is not defined and atos_hsm_ip_address is defined
|
|
notify: legacy vars warning
|
|
|
|
- name: create proteccio.rc
|
|
template:
|
|
src: proteccio.rc.j2
|
|
dest: /etc/proteccio/proteccio.rc
|
|
mode: 0644
|
|
|
|
- name: Get the client cert
|
|
get_url:
|
|
url: "{{ atos_client_cert_location }}"
|
|
dest: /etc/proteccio/proteccio_client.crt
|
|
force: no
|
|
|
|
- name: Get the client key
|
|
get_url:
|
|
url: "{{ atos_client_key_location }}"
|
|
dest: /etc/proteccio/proteccio_client.key
|
|
force: no
|
|
|
|
- name: Get the server cert
|
|
get_url:
|
|
url: "{{ item.server_cert_location }}"
|
|
dest: "/etc/proteccio/{{ item.ip | replace('.', '_') }}.CRT"
|
|
force: no
|
|
loop: "{{ atos_hsms }}"
|
|
|
|
- name: run nethsmstatus to confirm connection # noqa 301
|
|
command: nethsmstatus
|