When using the following (first time using expect) I have many responses with the same prompt. I took care of the first 20 of them as you can see below, however, the same prompt comes up again later during the install. I get complaints about duplicate values and the installer fails. How can I work around this (I wish this particular installer had a response file to configure that wasn’t garbage)
Error:
`
[WARNING]: While constructing a mapping from /etc/ansible/role/agent-install/tasks/main.yml, line 27, column 7, found a duplicate dict key (PRESS TO CONTINUE:). Using last defined value only.
`
Code:
`
- name: Execute the installer
expect:
command: “{{ directory }}/setup.bin”
responses:
‘PRESS TO CONTINUE:’: - “”
- “”
- “”
- “”
- “”
- “”
- “”
- “”
- “”
- “”
- “”
- “”
- “”
- “”
- “”
- “”
- “”
- “”
- “”
- “”
The above command being repeated should be sufficient, but adding a couple of more
just in case. Having extras in this case will not hurt
- “”
- “”
‘DO YOU ACCEPT THE TERMS OF THIS LICENSE AGREEMENT? (Y/N):’: “Y”
‘ENTER AN ABSOLUTE PATH, OR PRESS TO ACCEPT THE DEFAULT:’: “”
‘Manager IP or hostname: :’: 1.1.1.1
‘Manager Install Port (default 12345) : :’: “”
‘Manager Secure Port (default 23456) : :’: “”
‘PRESS TO CONTINUE:’: - “”
- “”
‘PRESS TO EXIT THE INSTALLER:’: “”
`