2017-05-05 11 views

答えて

0

可能性のあるプレイブックスには、ホストグループのスコープがあります。

--- 
- hosts: host_group_name 

サービスを停止するための役割があります。

- name: stop service on host_group 
    become: yes 
    name: service_name 
    state: stopped 

Ansibleアドホックコマンド:

ansible host_group_name -i在庫-a "サービスSERVICE_NAME停止"

0

使用以下のような条件の何か。

when: inventory_hostname in groups['groupname'] 
関連する問題