Skip to content
Snippets Groups Projects
Select Git revision
  • 4d67f881c926eb310adbe80e697c228c403c989e
  • master default
2 results

.pre-commit-config.yaml

Blame
  • main.yaml 218 B
    ---
    - name: Install Python3
      ansible.builtin.raw: opkg install python3
      register: opkg_install_python3
      changed_when: |
        'installing' in opkg_install_python3.stdout
    
    - name: Gather facts
      ansible.builtin.setup: