community.routeros.quote_argument 过滤器 – 引用参数
注意
此过滤器插件是 community.routeros 集合 (版本 3.1.0) 的一部分。
如果您使用的是 ansible
包,则可能已经安装了此集合。它不包含在 ansible-core
中。要检查是否已安装,请运行 ansible-galaxy collection list
。
要安装它,请使用:ansible-galaxy collection install community.routeros
。
要在剧本中使用它,请指定:community.routeros.quote_argument
。
community.routeros 2.0.0 中的新增功能
概要
引用参数。
输入
这描述了过滤器的输入,即 | community.routeros.quote_argument
之前的值。
参数 |
注释 |
---|---|
要引用的参数。 |
示例
- name: Quote a RouterOS CLI command argument
ansible.builtin.set_fact:
quoted: "{{ 'comment=this is a "comment"' | community.routeros.quote_argument }}"
# Should result in 'comment="this is a \"comment\""'
返回值
键 |
描述 |
---|---|
已引用的参数。 返回:成功 |