From d63e0ede094e009fbe1f519b8cf22c594d803aac Mon Sep 17 00:00:00 2001 From: "pulsar89.5" Date: Tue, 1 Apr 2025 16:59:47 +0200 Subject: [PATCH] fix: Add compatibility with CoreOS --- meta/main.yml | 7 ------- tasks/installation.yml | 2 +- vars/main.yml | 9 +++++++++ 3 files changed, 10 insertions(+), 8 deletions(-) create mode 100644 vars/main.yml diff --git a/meta/main.yml b/meta/main.yml index 929ee49..30fa583 100644 --- a/meta/main.yml +++ b/meta/main.yml @@ -15,10 +15,3 @@ galaxy_info: dependencies: - role: nftables - role: users - vars: - users_role_keepalived: - - name: keepalived_script - comment: "Dedicated user for keepalived script" - update_password: on_create - password_lock: true - shell: /bin/bash diff --git a/tasks/installation.yml b/tasks/installation.yml index d5570f3..762ced2 100644 --- a/tasks/installation.yml +++ b/tasks/installation.yml @@ -16,7 +16,7 @@ - --assumeyes - --idempotent - keepalived - creates: /usr/sbin/dnsmasq + creates: /sysroot/ostree/repo/refs/heads/rpmostree/pkg/keepalived when: ansible_facts['pkg_mgr'] == "atomic_container" become: true notify: Apply installation diff --git a/vars/main.yml b/vars/main.yml new file mode 100644 index 0000000..3f3c6cb --- /dev/null +++ b/vars/main.yml @@ -0,0 +1,9 @@ +--- +# vars file for keepalived + +users: + - name: keepalived_script + comment: "Dedicated user for keepalived script" + update_password: on_create + password_lock: true + shell: /bin/bash