From f028e53d6b04432416a6747205ef0069f587bece Mon Sep 17 00:00:00 2001 From: Ronny Date: Thu, 11 Dec 2025 16:02:56 +0000 Subject: [PATCH] fix keepalived order --- .gitea/workflows/ansible-runner.yaml | 2 -- playbooks/install_postgresql.yml.ansible | 1 + 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.gitea/workflows/ansible-runner.yaml b/.gitea/workflows/ansible-runner.yaml index dade6a0..6295980 100644 --- a/.gitea/workflows/ansible-runner.yaml +++ b/.gitea/workflows/ansible-runner.yaml @@ -65,11 +65,9 @@ jobs: - name: 🔎Check Ansible Playbook Syntax run: | # ansible-playbook --syntax-check playbooks/update_debian.yml.ansible - ansible-playbook --syntax-check playbooks/deploy_minio.yml.ansible ansible-playbook --syntax-check playbooks/install_postgresql.yml.ansible - name: 🏃‍♂️Run Ansible Playbook run: | - ansible-playbook -i inventory/raspberries.yaml playbooks/deploy_minio.yml.ansible --vault-password-file .vault_pass.txt # ansible-playbook -i inventory/raspberries.yaml playbooks/update_debian.yml.ansible --vault-password-file .vault_pass.txt ansible-playbook -i inventory/raspberries.yaml playbooks/install_postgresql.yml.ansible --vault-password-file .vault_pass.txt \ No newline at end of file diff --git a/playbooks/install_postgresql.yml.ansible b/playbooks/install_postgresql.yml.ansible index d59e8d0..0a0847c 100644 --- a/playbooks/install_postgresql.yml.ansible +++ b/playbooks/install_postgresql.yml.ansible @@ -3,6 +3,7 @@ gather_facts: true become: true roles: + - net_apps - etcd - postgresql - handlers \ No newline at end of file