diff options
author | a.sreekumar <ajith.sreekumar@bell.ca> | 2021-05-19 12:52:14 +0100 |
---|---|---|
committer | Sylvain Desbureaux <sylvain.desbureaux@orange.com> | 2021-05-27 20:00:34 +0000 |
commit | 30eff053ac6de072da95eba5bfb851235daf6bf8 (patch) | |
tree | bceed2adc52bc53e8d7f5003228dd2780e6d00da | |
parent | d42139ac86ede346e938a5a13d462c20ed3e1e23 (diff) |
[COMMON] Change import-custom-cert from bash to sh
As part of removing GPLv3 license, policy components have moved from
bash to sh. This change is required in import-custom-certs script so
that custom certificates can be imported into components that try to
import them. Without this change, the init containers of the
components will just fail.
Change-Id: I6c5028428d4cd7c8baf3e96cb16a3cd91db57f9e
Issue-ID: POLICY-3232
Signed-off-by: a.sreekumar <ajith.sreekumar@bell.ca>
(cherry picked from commit f79b6676cfdc380e004f184a21bb969b2824c06e)
-rwxr-xr-x | kubernetes/common/cert-wrapper/resources/import-custom-certs.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kubernetes/common/cert-wrapper/resources/import-custom-certs.sh b/kubernetes/common/cert-wrapper/resources/import-custom-certs.sh index 87e584c78e..e986c3909f 100755 --- a/kubernetes/common/cert-wrapper/resources/import-custom-certs.sh +++ b/kubernetes/common/cert-wrapper/resources/import-custom-certs.sh @@ -1,7 +1,7 @@ -#!/bin/bash +#!/bin/sh {{/* -# Copyright © 2020 Bell Canada +# Copyright © 2020-2021 Bell Canada # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. |