From 8843f247d6a429217c635c9da755cb0658c9945b Mon Sep 17 00:00:00 2001 From: Ewall555 Date: Tue, 17 Jun 2025 07:43:45 +0000 Subject: [PATCH] fix: Use local Python interpreter variable in RDP automation scripts --- apps/accounts/automations/verify_account/custom/rdp/main.yml | 2 +- apps/assets/automations/ping/custom/rdp/main.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/accounts/automations/verify_account/custom/rdp/main.yml b/apps/accounts/automations/verify_account/custom/rdp/main.yml index 94e895004..18b836b0f 100644 --- a/apps/accounts/automations/verify_account/custom/rdp/main.yml +++ b/apps/accounts/automations/verify_account/custom/rdp/main.yml @@ -3,7 +3,7 @@ vars: ansible_shell_type: sh ansible_connection: local - ansible_python_interpreter: /opt/py3/bin/python + ansible_python_interpreter: "{{ local_python_interpreter }}" tasks: - name: Verify account (pyfreerdp) diff --git a/apps/assets/automations/ping/custom/rdp/main.yml b/apps/assets/automations/ping/custom/rdp/main.yml index bcf07c15c..9fd594449 100644 --- a/apps/assets/automations/ping/custom/rdp/main.yml +++ b/apps/assets/automations/ping/custom/rdp/main.yml @@ -3,7 +3,7 @@ vars: ansible_shell_type: sh ansible_connection: local - ansible_python_interpreter: /opt/py3/bin/python + ansible_python_interpreter: "{{ local_python_interpreter }}" tasks: - name: Test asset connection (pyfreerdp)