Browse Source

fix issue with CR-LF

master
Nicolas Massé 9 years ago
parent
commit
6390e36851
  1. 2
      roles/sso/tasks/main.yml

2
roles/sso/tasks/main.yml

@ -88,7 +88,7 @@
command: creates=cacert.pem keytool -exportcert -alias ssl -keypass "{{ sso_keystore_password }}" -storepass "{{ sso_keystore_password }}" -keystore keystore.jks -file cacert.pem -rfc command: creates=cacert.pem keytool -exportcert -alias ssl -keypass "{{ sso_keystore_password }}" -storepass "{{ sso_keystore_password }}" -keystore keystore.jks -file cacert.pem -rfc
- name: Convert the CA Cert to a JSON String to be used in a JSON Patch - name: Convert the CA Cert to a JSON String to be used in a JSON Patch
command: 'perl -pe ''chomp; print "\\n"'' cacert.pem' command: 'perl -pe ''chomp; s/\r//g; print "\\n"'' cacert.pem'
register: cacert register: cacert
- name: Update the secure route to use "reencrypt" instead of "passthrough" - name: Update the secure route to use "reencrypt" instead of "passthrough"

Loading…
Cancel
Save