mivek.ddclient
Ansibleロール: DDClient
このロールは、ddclientサービスをインストールして起動します。
要件
特になし
ロール変数
変数はddclientの設定から取得します。
デフォルト変数
ddclient_version: 3.9.1 # ソースからインストールする場合のみ
ddclient_configuration_template: templates/ddclient.conf.j2
ddclient_service_template: templates/ddclient.service.j2
ddclient_daemon: 300
ddclient_install_from_source: false
ddclient_ssl: 'yes'
ddclient_configs:
-
protocol: dnspark
use: null
server: null
backupmx: null
mx: null
mxpri: null
wildcard: null
login: login
password: password
hosts:
- host
vars変数
__ddclient_configuration_directory: /etc/ddclient
__ddclient_configuration_location: "{{ __ddclient_configuration_directory }}/ddclient.conf"
__ddclient_download_url: https://github.com/ddclient/ddclient/archive/refs/tags/v{{ ddclient_version }}.tar.gz
__ddclient_download_location: /tmp/ddclient-{{ ddclient_version }}.tar.gz
__ddclient_unarchive_location: /tmp
__ddclient_service_file: /etc/systemd/system/ddclient.service
__ddclient_prerequisite:
- g++
- perl
- make
依存関係
特になし
使用例プレイブック
変数をパラメータとして渡した使用例を含めることは、ユーザーにとっても便利です:
- hosts: servers
become: true
tasks:
- import_role:
name: ddclient
vars:
daemon: 60
configs:
-
protocol: dyndns2
login: myLogin
password: myPassword
use: web
server: null
backupmx: null
mx: null
mxpri: null
wildcard: null
hosts:
- myhost.dyndns.org
ライセンス
MIT
インストール
ansible-galaxy install mivek.ddclient
ライセンス
mit
ダウンロード
89