我正在学习Ansible,我想知道如何编写任务来处理以下命令:
$<command> <options>
username:
email address:
password:
password (check):
<command> <option>
要求在剧本中硬编码的四个变量。
感谢您提供的任何见解
答案 0 :(得分:3)
使用expect
模块:
- hosts: localhost
tasks:
- expect:
command: command option
responses:
username: "John Doe"
email: "joh@doe.com"
password: "mypass"