Skip to content

Commit

Permalink
refactor: Update Zscaler root cert file path in .zshrc and dev_tools_…
Browse files Browse the repository at this point in the history
…cli.yaml
  • Loading branch information
Goran Ninkovic committed May 7, 2024
1 parent dbadd66 commit 963e954
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions post-installation/defaults/.zshrc
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ export LESS="--mouse -RF"

alias gbc="git branch --show-current"

if [ -s $HOME/ZscalerRootCA.crt ]; then
export NODE_EXTRA_CA_CERTS="$HOME/ZscalerRootCA.crt"
if [ -s $HOME/.ZscalerRootCA.crt ]; then
export NODE_EXTRA_CA_CERTS="$HOME/.ZscalerRootCA.crt"
fi

# Functions
Expand Down
2 changes: 1 addition & 1 deletion post-installation/tasks/dev_tools_cli.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

- name: Copy Zscaler root cert to $HOME
ansible.builtin.copy:
src: ./defaults/ZscalerRootCA.crt
src: ./defaults/.ZscalerRootCA.crt
dest: "{{ user_home }}"
mode: "0644"
become_user: "{{ username }}"
Expand Down

0 comments on commit 963e954

Please sign in to comment.