From e94d608b1135797509372dc2f81a237d7b20d156 Mon Sep 17 00:00:00 2001 From: core Date: Fri, 23 Jun 2023 18:45:34 -0400 Subject: [PATCH] hotfix! ansible wrong host groups --- ansible/start-stable.yaml | 4 ++-- ansible/stop-bleeding.yaml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ansible/start-stable.yaml b/ansible/start-stable.yaml index f7626bc98e4d7590976275d911d3917619f607b1..64b1dde549facd5a99b4ddf6dfd6f326f4554bb7 100644 --- a/ansible/start-stable.yaml +++ b/ansible/start-stable.yaml @@ -1,5 +1,5 @@ - name: Start stable servers - hosts: starkingdoms_prod_servers_beta + hosts: starkingdoms_prod_servers_stable vars: compose_dir: /home/stk-deploy tasks: @@ -8,4 +8,4 @@ - name: Start the server ansible.builtin.shell: cmd: docker-compose up -d - chdir: "{{ compose_dir }}" \ No newline at end of file + chdir: "{{ compose_dir }}" diff --git a/ansible/stop-bleeding.yaml b/ansible/stop-bleeding.yaml index 0f2c3ac0c6fa7efe1d228e3f697b932cfcc3d6cf..213de0bd2948c327d2b47be2c579c5b1d21ee4b2 100644 --- a/ansible/stop-bleeding.yaml +++ b/ansible/stop-bleeding.yaml @@ -1,5 +1,5 @@ - name: Stop bleeding servers - hosts: starkingdoms_prod_servers_beta + hosts: starkingdoms_prod_servers_bleeding vars: compose_dir: /home/stk-deploy tasks: @@ -8,4 +8,4 @@ - name: Stop the server ansible.builtin.shell: cmd: docker-compose down - chdir: "{{ compose_dir }}" \ No newline at end of file + chdir: "{{ compose_dir }}"