私のAnsibleサーバーとリモートシステムにJavaプロパティファイルがあります。
サーバー: /opt/deployment/application/build.properties
app=application
build=1.0.15
etc=etc
最新バージョンまたは以前のバージョンを含むことができるリモートシステム(インストールされている場合)で同じファイルを使用できます。
リモート:/opt/application/build.properties
app=application
build=1.0.13
config1=config
etc=etc
ansible.buildin.ini を使用して、リモート・システムのビルド番号をサーバーと比較できます。
if server > remote - do my upgrade block
if remote == "" (file does not exist) - do my install block
otherwise do nothing
ansible.buildin.iniがローカルサーバー用であるかリモートシステム用であるかはわかりません(何かが欠けている可能性があります)。違いがある場合は、両方のシステムがUbuntu Linuxです。
ベストアンサー1
私の意見の後ろに大きな写真を提供するためです。ファイルをコピーし、変更が発生した場合はハンドラに通知します。あるいは、タスクに変数を登録して確認することもできますが、when : <registered_var>.changed
通常はハンドラが優先されます。
---
- hosts: my_remote_group
tasks:
- name: Make sure remote ini file is aligned with controller
copy:
src: /opt/deployment/application/build.properties
dest: /opt/application/build.properties
owner: some_relevant_user
group: some_relevant_group
mode: 0660
notify: upgrade_my_package
handlers:
- name: Upgrade my package
listen: upgrade_my_package
debug:
msg: "Do whatever is needed to upgrade my package if ini files are different. Use an include_task module if needed"