1

我一直在尝试运行命令

brew services restart nrpe

在 Ansible 的自制模块的帮助下。

我已经浏览了文档(homebrew ansible doc),但我找不到一个做类似事情的例子。我尝试了以下方法:

    - homebrew:
        name: nrpe
        state: present
        install_options: services,restart

但它没有用。请让我知道运行命令的正确方法 brew services restart nrpe

PS -nrpe虽然自制软件的安装或其他服务运行良好。

编辑 1 - 还包括 Nagios 标签,因为 nagios 社区也可能会遇到这种情况。

4

1 回答 1

1

根据自制 ansible 模块的文档,命令:

brew services restart nrpe

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

- name: restart the nrpe service
  command: brew services restart nrpe
于 2017-06-07T19:45:17.783 回答