Skip to content

Commit c8929b4

Browse files
authored
Merge branch 'master' into add-web-and-enterprise-sign-in
2 parents 66dffb0 + 528c6ed commit c8929b4

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

  • ansible/roles/dock_launch_config/tasks

ansible/roles/dock_launch_config/tasks/main.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
# this requires the use of gnu/coreutils base64 (`brew install coreutils`)
1515
# Allows us to use same base64 locally and in host
1616
- name: encode krain config to base64
17-
shell: cat ~/{{ app_name }}.conf | base64 -w 0
17+
shell: cat ~/{{ app_name }}.conf | gbase64 -w 0
1818
register: krain_base64
1919
vars:
2020
- app_name: "krain"
@@ -34,7 +34,7 @@
3434
# this requires the use of gnu/coreutils base64 (`brew install coreutils`)
3535
# Allows us to use same base64 locally and in host
3636
- name: encode charon config to base64
37-
shell: cat ~/{{ app_name }}.conf | base64 -w 0
37+
shell: cat ~/{{ app_name }}.conf | gbase64 -w 0
3838
register: charon_base64
3939
vars:
4040
- app_name: "charon"
@@ -48,15 +48,15 @@
4848
- { file_name: 'token-03', value: "{{ vault_token_03 }}" }
4949

5050
- name: encode ca.pem to base64
51-
shell: cat ./certs/ca.pem | base64 -w 0
51+
shell: cat ./certs/ca.pem | gbase64 -w 0
5252
register: ca_pem_base64
5353

5454
- name: encode ca-key.pem to base64
55-
shell: cat ./certs/ca-key.pem | base64 -w 0
55+
shell: cat ./certs/ca-key.pem | gbase64 -w 0
5656
register: ca_key_pem_base64
5757

5858
- name: encode pass to base64
59-
shell: cat ./certs/pass | base64 -w 0
59+
shell: cat ./certs/pass | gbase64 -w 0
6060
register: pass_base64
6161

6262
- name: Generate dock script

0 commit comments

Comments
 (0)