Ansible 是否能够暂停 Linux 系统?

Ansible 是否能够暂停 Linux 系统?

除了 Linux 的重新启动和关闭之外,我无法找到任何模块。我想知道是否有人这样做过?

答案1

您可以通过 ansible 运行 shell 命令。

- name: suspend "{{ ansible_hostname }}"
  command: systemctl suspend

至于再次唤醒它们:网络唤醒?

相关内容