build
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Has been cancelled

This commit is contained in:
2025-12-21 16:32:47 +01:00
parent 3264bd2b79
commit de51187e7a
4 changed files with 11 additions and 13 deletions

View File

@@ -45,12 +45,8 @@ datacenter:
ansible_python_interpreter: /share/ZFS530_DATA/.qpkg/QPython312/bin/python3
vms:
hosts:
vm01.home.lan:
vm02.home.lan:
vm03.home.lan:
vm04.home.lan:
vm05.home.lan:
vm06.home.lan:
vm0[1:9].home.lan:
vm[10:27].home.lan:
vars:
ansible_python_interpreter: /usr/bin/python3
ansible_ssh_user: jd

View File

@@ -185,12 +185,8 @@ datacenter:
ansible_ssh_private_key_file: ssh_key.pem
vms:
hosts:
vm01.home.lan:
vm02.home.lan:
vm03.home.lan:
vm04.home.lan:
vm05.home.lan:
vm06.home.lan:
vm0[1:9].home.lan:
vm[10:27].home.lan:
vars:
ansible_python_interpreter: /usr/bin/python3
ansible_ssh_user: jd

View File

@@ -26,7 +26,6 @@
dest: /share/docker_data/docker-tasmota/Tasmota
version: '{{ BRANCH }}'
# - name: Fetch tasmota
# ansible.builtin.shell:
# cmd: 'git fetch https://github.com/arendst/Tasmota.git {{ BRANCH }}'

View File

@@ -4,6 +4,13 @@
- name: Facts
ansible.builtin.setup:
- name: Create apt proxy file
ansible.builtin.copy:
dest: /etc/apt/apt.conf.d/02proxy
content: |
Acquire::http::Proxy "http://192.168.77.101:3142";
Acquire::https::Proxy "false";
- name: Print arch
ansible.builtin.debug:
msg: "{{ ansible_architecture }}"