community.general.shutdown 模块 – 关闭机器
注意
此模块是 community.general 集合(版本 10.1.0)的一部分。
如果您使用的是 ansible
包,您可能已经安装了此集合。 它不包含在 ansible-core
中。要检查是否已安装,请运行 ansible-galaxy collection list
。
要安装它,请使用:ansible-galaxy collection install community.general
。
要在 playbook 中使用它,请指定:community.general.shutdown
。
community.general 1.1.0 中的新功能
概要
关闭机器。
注意
此模块具有对应的操作插件。
参数
参数 |
注释 |
---|---|
关闭前等待的秒数。作为参数传递给 shutdown 命令。 在 Linux、macOS 和 OpenBSD 上,这会转换为分钟并向下舍入。如果小于 60,则设置为 0。 在 Solaris 和 FreeBSD 上,这将是秒数。 默认值: |
|
关闭前向用户显示的消息。 默认值: |
|
在远程计算机上搜索 只会搜索这些路径以查找 默认值: |
属性
属性 |
支持 |
描述 |
---|---|---|
支持:完全 |
表示它具有对应的操作插件,因此可以在控制器上执行某些选项。 |
|
支持:完全 |
支持与 |
|
支持:完全 |
可以在 |
|
支持:无 |
在差异模式下,将返回有关已更改(或可能需要在 |
备注
注意
在远程节点上搜索
shutdown
命令时,会忽略PATH
。 如果默认路径不起作用,请使用search_paths
指定要搜索的位置。如果未在
search_paths
中找到 shutdown 命令,则不支持msg
和delay
选项,而是模块将尝试通过调用systemctl shutdown
来关闭系统。
另请参阅
另请参阅
示例
- name: Unconditionally shut down the machine with all defaults
community.general.shutdown:
- name: Delay shutting down the remote node
community.general.shutdown:
delay: 60
- name: Shut down a machine with shutdown command in unusual place
community.general.shutdown:
search_paths:
- '/lib/molly-guard'
返回值
常见的返回值记录在此处,以下是此模块独有的字段
键 |
描述 |
---|---|
如果机器已关闭,则为 返回:始终 示例: |