You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
AFAIK it's not possible to use ansible code like below in a bundle:
- pause:
prompt: >
"There is a backup instance with different database system identifier already exists in
{{ pgbackup_path + '/backups/' + instance_name + '/' }} at host {{ pghost }} .
Should I delete it [y/N]?"
echo: yes
register: rm_backup_instance
when: pg_backup_instance_status.stat.exists and sysid_is_different
The text was updated successfully, but these errors were encountered:
No we have no plans like this. It can be done in the way of calling "pause" because of handling stdin could be a pain. We had some talks about making pauses and question as a steps in multijob.
You could define ansible module, smth like adcm_askuser.
Called from a play, it could have some options, for example: msg_title, msg_text and description of the query (checklist or string value), show msg to user via adcm web interface, get user's answer and return it to the play.
AFAIK it's not possible to use ansible code like below in a bundle:
The text was updated successfully, but these errors were encountered: