fix other regression

This commit is contained in:
Lukas Greve
2025-11-02 11:21:25 +01:00
parent d68ca406e2
commit 517bd5321b

View File

@@ -1,6 +1,8 @@
---
- name: Initial generic setup - name: Initial generic setup
hosts: gitrunner hosts: gitrunner
become: yes become: yes
gather_facts: yes
tasks: tasks:
- name: Install required packages - name: Install required packages
@@ -10,6 +12,7 @@
- nodejs - nodejs
- mock - mock
state: present state: present
update_cache: yes
- name: Check current hostname - name: Check current hostname
command: hostname command: hostname
@@ -18,5 +21,6 @@
- name: Set hostname to configured value (if needed) - name: Set hostname to configured value (if needed)
hostname: hostname:
name: fedora-rawhide10 name: fedora-rawhide
when: current_hostname.stdout != ansible_hostname when:
- current_hostname.stdout != "fedora-rawhide"