Ansible

我可以使用 Ansible systemd 模組來停止 CoreOS 系統嗎?

  • March 26, 2020

我只需要一個簡單的劇本或臨時語法來關閉一組 CoreOS 主機。

有些東西告訴我,我可能需要使用 shell 模組,這確實不會很糟糕。

關閉 CoreOS 主機的正確方法是“systemctl poweroff”。

Ansible 命令模組將為您提供幫助。我沒有嘗試使用它來停止伺服器,而是用於不同的目的。

例子

- name: return motd to registered var
 command: cat /etc/motd
 register: mymotd

引用自:https://serverfault.com/questions/1008431