现在我正在使用ansible的shell脚本,如果它在多行上会更易读
- name: iterate user groups
shell: groupmod -o -g {{ item['guid'] }} {{ item['username'] }} ....more stuff to do
with_items: "{{ users }}"
只是不确定如何在Ansible Shell模块中允许多行脚本
1
还可以考虑使用ansible'script'命令并使用外部文件
—
Jason