Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: k8s error exec /docker-entrypoint.sh: exec format error #127

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion common/docker-entrypoint.d/00-check-for-required-env.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env bash
#!/bin/bash
#
# Copyright 2020 F5 Networks
#
Expand Down
4 changes: 1 addition & 3 deletions common/docker-entrypoint.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env bash
#!/bin/bash
#
# Copyright 2020 F5 Networks
#
Expand All @@ -17,8 +17,6 @@

# vim:sw=4:ts=4:et

set -e

parseBoolean() {
case "$1" in
TRUE | true | True | YES | Yes | 1)
Expand Down
4 changes: 2 additions & 2 deletions standalone_ubuntu_oss_install.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env bash
#!/bin/bash

set -o errexit # abort on nonzero exit status
set -o pipefail # don't hide errors within pipes
Expand Down Expand Up @@ -213,7 +213,7 @@ chown root:root /etc/nginx/environment
chmod og-rwx /etc/nginx/environment

cat > /usr/local/bin/template_nginx_config.sh << 'EOF'
#!/usr/bin/env bash
#!/bin/bash

ME=$(basename $0)

Expand Down
2 changes: 1 addition & 1 deletion test.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env bash
#!/bin/bash

#
# Copyright 2020 F5 Networks
Expand Down
2 changes: 1 addition & 1 deletion test/integration/test_api.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env bash
#!/bin/bash

#
# Copyright 2020 F5 Networks
Expand Down