diff --git a/.gitea/workflows/provision_configure.yaml b/.gitea/workflows/provision_configure.yaml index 87335fb..8c38343 100644 --- a/.gitea/workflows/provision_configure.yaml +++ b/.gitea/workflows/provision_configure.yaml @@ -77,6 +77,10 @@ jobs: apt update apt install -y ansible + - name: Install Ansible Roles + run: | + ansible-galaxy install -r ../ansible/requirements.yml + - name: Run Ansible Playbook env: ANSIBLE_USER: ${{ secrets.ANSIBLE_USER }} diff --git a/ansible/main.yml b/ansible/main.yml index 449987e..100f7cb 100644 --- a/ansible/main.yml +++ b/ansible/main.yml @@ -9,10 +9,10 @@ - name: docker - name: requests tasks: - - name: Ensure Python 3 and pip are installed - ansible.builtin.raw: | - sudo apt update && sudo apt install -y python3 python3-pip - changed_when: false + # - name: Ensure Python 3 and pip are installed + # ansible.builtin.raw: | + # sudo apt update && sudo apt install -y python3 python3-pip + # changed_when: false # - name: Install 'six' module # ansible.builtin.pip: