yaml
所以我在我的ansible
项目中有这块。
- name: common | register vim as a type of editor for update-alternatives
command: update-alternatives --install "/usr/bin/editor" "editor" $(which vim) 100
sudo: yes
我想要做的是注册为一种editor
,将其设置priority
为 100。
因为我可以在终端中执行此行,但是,我无法将其写入ansible
,这是错误:
标准错误:更新替代:优先级必须是整数
无论如何我可以将“100”转换为整数而不是字符串?