diff options
author | Guillaume Lambert <guillaume.lambert@orange.com> | 2021-03-09 21:41:30 +0100 |
---|---|---|
committer | Sylvain Desbureaux <sylvain.desbureaux@orange.com> | 2021-04-14 13:26:30 +0000 |
commit | 785bc3875ee2c3a45caf6ba2244d5e3b6e6b36b1 (patch) | |
tree | dadeb1a1439eddf4920891e6b666ad671ec34cc2 /kubernetes/sdnc/resources/geo/bin | |
parent | d3166747bb93ccaba9d471acce373850d7d6f35f (diff) |
[COMMON] Fix function declarations bashisms
pointed out by checkbashisms.
$ mycmd=$(tox -e checkbashisms | grep "^possible .*'function' is useless
" | sed -e "s@^[^.]*\(.[^ ]*\) line \([0-9]*\) .*@sed -i -e '\2s/functio
n \\\([^ ()]*\\\) *(\\\?)\\\?/\\\1 ()/\' -e '\2s/(){/() {/' \1;@")
$ eval $mycmd
Issue-ID: OOM-2643
Signed-off-by: Guillaume Lambert <guillaume.lambert@orange.com>
Change-Id: Ic41c8ba8288b7a90db9f5775cd601c09ff2ab663
Diffstat (limited to 'kubernetes/sdnc/resources/geo/bin')
-rwxr-xr-x | kubernetes/sdnc/resources/geo/bin/switchVoting.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kubernetes/sdnc/resources/geo/bin/switchVoting.sh b/kubernetes/sdnc/resources/geo/bin/switchVoting.sh index 076f1ea35f..65b76265fc 100755 --- a/kubernetes/sdnc/resources/geo/bin/switchVoting.sh +++ b/kubernetes/sdnc/resources/geo/bin/switchVoting.sh @@ -16,7 +16,7 @@ # limitations under the License. */}} -function usage() +usage () { echo usage: switchVoting.sh primary\|secondary exit 1 |