Skip to content

Commit

Permalink
Add missing dash to new-password-file arg when setting intermediate k…
Browse files Browse the repository at this point in the history
…ey passwd (#374)

Add missing dash to new-password-file arg when changing intermediate passwords.
  • Loading branch information
nbrew authored Apr 6, 2024
1 parent 0ad77f2 commit c403795
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion roles/step_ca/tasks/init.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@
become_user: "{{ step_ca_user }}"

- name: Change password for intermediate and ssh keys # noqa no-changed-when
command: "{{ step_cli_executable }} crypto change-pass {{ step_ca_path }}/secrets/{{ item }} -f --password-file={{ step_ca_root_password_file }} -new-password-file={{ step_ca_intermediate_password_file }}"
command: "{{ step_cli_executable }} crypto change-pass {{ step_ca_path }}/secrets/{{ item }} -f --password-file={{ step_ca_root_password_file }} --new-password-file={{ step_ca_intermediate_password_file }}"
become: yes
become_user: "{{ step_ca_user }}"
loop: "{{ _item_list | select | list }}"
Expand Down

0 comments on commit c403795

Please sign in to comment.