This commit is contained in:
Vadim Shulkin 2025-03-03 21:16:41 -05:00
parent 122741c989
commit 83e83ed2a6
1 changed files with 2 additions and 2 deletions

View File

@ -5,10 +5,10 @@
- name: Ensure required Python packages are installed
pip:
requirements: /Users/vadimshulkin/playbooks/requirements.txt # Ensure dependencies are installed
requirements: requirements.txt
- name: Run the Python script
command: python3 /Users/vadimshulkin/playbooks/scripts/my_script.py
command: python3 scripts/my_script.py
register: script_output
- name: Show script output