Skip to content

Commit

Permalink
Debugs
Browse files Browse the repository at this point in the history
  • Loading branch information
eifelmicha committed Jun 6, 2024
1 parent 224fe1f commit 2ff4d1b
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions tasks/main.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,22 @@
---
- name: Debugs
ansible.builtin.command: /usr/bin/python3.12 -V
register: _command_stdout
ignore_errors: true

- name: Print debug
ansible.builtin.debug:
var: _command_stdout

- name: Debugs
ansible.builtin.command: /usr/bin/python3.12 -m venv /opt/ansible_virtualenv
register: _command_stdout
ignore_errors: true

- name: Print debug
ansible.builtin.debug:
var: _command_stdout

- name: Install Ansible and dependencies via PIP
ansible.builtin.pip:
name:
Expand Down

0 comments on commit 2ff4d1b

Please sign in to comment.