Skip to content

Commit

Permalink
Merge pull request #1018 from project-sunbird/reload-fix
Browse files Browse the repository at this point in the history
fix: removed grep -v f
  • Loading branch information
beepdot authored Dec 17, 2019
2 parents 6f91f09 + 5915920 commit 0c5148c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ansible/roles/stack-sunbird/tasks/service_stack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
seconds: 40

- name: Getting the list of proxy services host details
shell: "getent ahostsv4 $(docker service ps proxy_proxy | grep Runn | awk '{print $4}') | cut -d \" \" -f1 | grep -v f | uniq"
shell: "getent ahostsv4 $(docker service ps proxy_proxy | grep Runn | awk '{print $4}') | cut -d \" \" -f1 | uniq"
register: proxy_details

- name: reload proxy containers configurations
Expand All @@ -49,7 +49,7 @@
register: proxy_out

- name: Getting the list of kong services host details
shell: "getent ahostsv4 $(docker service ps api-manager_kong | grep Runn | awk '{print $4}') | cut -d \" \" -f1 | grep -v f | uniq"
shell: "getent ahostsv4 $(docker service ps api-manager_kong | grep Runn | awk '{print $4}') | cut -d \" \" -f1 | uniq"
register: kong_details

- name: reload kong container configurations
Expand Down

0 comments on commit 0c5148c

Please sign in to comment.