Skip to content

Commit

Permalink
Merge pull request #549 from pkesavap/3.0.0
Browse files Browse the repository at this point in the history
Changes to accomodate pcs 0.10.x to gdeploy
  • Loading branch information
pkesavap committed Apr 3, 2020
2 parents e99d3ae + a369671 commit 9d9d54a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions playbooks/ganesha-bootstrap-new-nodes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,12 +103,12 @@
ignore_errors: yes

- name: Pcs cluster authenticate the hacluster on new nodes
shell: pcs cluster auth -u hacluster -p hacluster {{ item }}
shell: pcs host auth -u hacluster -p hacluster {{ item }}
register: result
with_items: "{{ nodes }}"

- name: Pcs cluster authenticate the hacluster on existing nodes
shell: pcs cluster auth -u hacluster -p hacluster {{ item }}
shell: pcs host auth -u hacluster -p hacluster {{ item }}
register: result
with_items: "{{ cluster_nodes }}"

Expand Down
2 changes: 1 addition & 1 deletion playbooks/ganesha-pcs-auth-new-nodes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

tasks:
- name: Pcs cluster authenticate the hacluster on new nodes
shell: pcs cluster auth -u hacluster -p hacluster {{ item }}
shell: pcs host auth -u hacluster -p hacluster {{ item }}
register: result
with_items: "{{ nodes }}"

Expand Down
2 changes: 1 addition & 1 deletion playbooks/pcs-authentication.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

tasks:
- name: Pcs cluster authenticate the hacluster users in all the nodes
shell: pcs cluster auth -u hacluster -p hacluster {{ item }}
shell: pcs host auth -u hacluster -p hacluster {{ item }}
register: result
with_items: "{{ cluster_nodes }}"

Expand Down

0 comments on commit 9d9d54a

Please sign in to comment.