📌
Ansible win_nssmモジュールでWindowsサービス登録
概要
win_serviceモジュールを利用してサービス登録を行う。
ansibleドキュメント-win_service_module
win_serviceを利用したサービス登録
- name: Service registration.
ansible.windows.win_service:
name : "{{ service.name }}"
path: "{{ service.path }}"
display_name: "{{ service.display_name }}"
description: "{{ service.description }}"
start_mode: auto
state: started
パラメータ
パラメータ | 説明 |
---|---|
name | 登録するサービス名 |
path | 登録するアプリのパス |
display_name | サービス表示名 |
description | サービスの説明 |
start_mode | 起動モード |
state | サービスの状態 |
Discussion