Panagiotis Asked: 2019-10-17 04:00:04 +0800 CST2019-10-17 04:00:04 +0800 CST 2019-10-17 04:00:04 +0800 CST lightdm 端口监听它是否启动 772 在继续我的剧本中的任务之前,我正在检查 lightdm 是否已启动。 lightdm 启动后是否有一个端口号? lightdm 2 个回答 Voted Best Answer Vladimir Botka 2019-10-17T05:08:36+08:002019-10-17T05:08:36+08:00 问:“在继续任务之前检查 lightdm 是否已启动” 答:可以使用service_facts并选择特定服务的属性。例如剧本 - hosts: localhost vars: my_service: 'lightdm.service' tasks: - service_facts: - set_fact: my_state: "{{ services| dict2items| selectattr('key', 'match', my_service)| map(attribute='value.state')| list| first }}" - debug: msg: "{{ my_service }} is {{ my_state }}" 给 "msg": "lightdm.service is running" binarym 2019-10-17T04:41:10+08:002019-10-17T04:41:10+08:00 不。lightdm是一个显示管理器,旨在在 X 上运行。它不应该打开网络端口...
答:可以使用service_facts并选择特定服务的属性。例如剧本
给
不。
lightdm
是一个显示管理器,旨在在 X 上运行。它不应该打开网络端口...