我一直在尝试运行命令
brew services restart nrpe
在Ansible的自制模块的帮助下。
我已经阅读了文档(homebrew ansible doc),但我找不到一个做类似事情的例子。我尝试过以下方法:
- homebrew:
name: nrpe
state: present
install_options: services,restart
但它不起作用。请让我知道运行命令的正确方法
brew services restart nrpe
。
P.S。 - 通过自制软件安装nrpe
或其他服务非常有效。
编辑1 - 还包括Nagios标记,因为nagios社区也可能会遇到这种情况。
答案 0 :(得分:1)
根据homebrew ansible module的文档,命令:
brew services restart nrpe
似乎没有实施。解决方案可能是使用command module
:
- name: restart the nrpe service
command: brew services restart nrpe