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