使用Homebrew模块为Ansible运行brew restart命令

时间:2017-06-07 18:49:21

标签: macos ansible homebrew nagios nagiosxi

我一直在尝试运行命令

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社区也可能会遇到这种情况。

1 个答案:

答案 0 :(得分:1)

根据homebrew ansible module的文档,命令:

brew services restart nrpe

似乎没有实施。解决方案可能是使用command module

- name: restart the nrpe service
  command: brew services restart nrpe