Skip to content

Commit

Permalink
shfmt changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
kportertx committed Oct 1, 2024
1 parent a16f663 commit c6c86e3
Show file tree
Hide file tree
Showing 4 changed files with 176 additions and 176 deletions.
88 changes: 44 additions & 44 deletions community/ubuntu22.04/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,70 +14,70 @@ export NSUP_PERIOD=${NSUP_PERIOD:-120}
export STORAGE_GB=${STORAGE_GB:-4}

if [ "${DATA_IN_MEMORY}" = "true" ]; then
export READ_PAGE_CACHE="false"
export READ_PAGE_CACHE="false"
else
export READ_PAGE_CACHE="true"
export READ_PAGE_CACHE="true"
fi

if asd --version | grep -q "Community"; then
FEATURE_KEY_FILE="" # invalid for community edition
FEATURE_KEY_FILE="" # invalid for community edition
fi

function bash_eval_template() {
local template_file=$1
local target_file=$2

echo "" >"${target_file}"

while IFS= read -r line; do
if grep -qE "[$][(]|[{]" <<<"${line}"; then
local update
update=$(eval echo "\"${line}\"") || exit 1
grep -qE "[^[:space:]]*" <<<"${update}" && echo "${update}" >>"${target_file}"
else
echo "${line}" >>"${target_file}"
fi
done <"${template_file}"

# Ignore failure when template is mounted in a read-only filesystem.
rm "${template_file}" || true
local template_file=$1
local target_file=$2

echo "" >"${target_file}"

while IFS= read -r line; do
if grep -qE "[$][(]|[{]" <<<"${line}"; then
local update
update=$(eval echo "\"${line}\"") || exit 1
grep -qE "[^[:space:]]*" <<<"${update}" && echo "${update}" >>"${target_file}"
else
echo "${line}" >>"${target_file}"
fi
done <"${template_file}"

# Ignore failure when template is mounted in a read-only filesystem.
rm "${template_file}" || true
}

# Fill out conffile with above values
if [ -f /etc/aerospike/aerospike.template.conf ]; then
conf=/etc/aerospike/aerospike.conf
template=/etc/aerospike/aerospike.template.conf
conf=/etc/aerospike/aerospike.conf
template=/etc/aerospike/aerospike.template.conf

bash_eval_template "${template}" "${conf}"
bash_eval_template "${template}" "${conf}"
fi

# if command starts with an option, prepend asd
if [ "${1:0:1}" = '-' ]; then
set -- asd "$@"
set -- asd "$@"
fi

# if asd is specified for the command, start it with any given options
if [ "$1" = 'asd' ]; then
NETLINK=${NETLINK:-eth0}

# We will wait a bit for the network link to be up.
NETLINK_UP=0
NETLINK_COUNT=0

echo "link ${NETLINK} state $(cat /sys/class/net/"${NETLINK}"/operstate)"

while [ ${NETLINK_UP} -eq 0 ] && [ ${NETLINK_COUNT} -lt 20 ]; do
if grep -q "up" /sys/class/net/"${NETLINK}"/operstate; then
NETLINK_UP=1
else
sleep 0.1
((++NETLINK_COUNT))
fi
done

echo "link ${NETLINK} state $(cat /sys/class/net/"${NETLINK}"/operstate) in ${NETLINK_COUNT}"
# asd should always run in the foreground.
set -- "$@" --foreground
NETLINK=${NETLINK:-eth0}

# We will wait a bit for the network link to be up.
NETLINK_UP=0
NETLINK_COUNT=0

echo "link ${NETLINK} state $(cat /sys/class/net/"${NETLINK}"/operstate)"

while [ ${NETLINK_UP} -eq 0 ] && [ ${NETLINK_COUNT} -lt 20 ]; do
if grep -q "up" /sys/class/net/"${NETLINK}"/operstate; then
NETLINK_UP=1
else
sleep 0.1
((++NETLINK_COUNT))
fi
done

echo "link ${NETLINK} state $(cat /sys/class/net/"${NETLINK}"/operstate) in ${NETLINK_COUNT}"
# asd should always run in the foreground.
set -- "$@" --foreground
fi

exec "$@"
88 changes: 44 additions & 44 deletions enterprise/ubuntu22.04/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,70 +14,70 @@ export NSUP_PERIOD=${NSUP_PERIOD:-120}
export STORAGE_GB=${STORAGE_GB:-4}

if [ "${DATA_IN_MEMORY}" = "true" ]; then
export READ_PAGE_CACHE="false"
export READ_PAGE_CACHE="false"
else
export READ_PAGE_CACHE="true"
export READ_PAGE_CACHE="true"
fi

if asd --version | grep -q "Community"; then
FEATURE_KEY_FILE="" # invalid for community edition
FEATURE_KEY_FILE="" # invalid for community edition
fi

function bash_eval_template() {
local template_file=$1
local target_file=$2

echo "" >"${target_file}"

while IFS= read -r line; do
if grep -qE "[$][(]|[{]" <<<"${line}"; then
local update
update=$(eval echo "\"${line}\"") || exit 1
grep -qE "[^[:space:]]*" <<<"${update}" && echo "${update}" >>"${target_file}"
else
echo "${line}" >>"${target_file}"
fi
done <"${template_file}"

# Ignore failure when template is mounted in a read-only filesystem.
rm "${template_file}" || true
local template_file=$1
local target_file=$2

echo "" >"${target_file}"

while IFS= read -r line; do
if grep -qE "[$][(]|[{]" <<<"${line}"; then
local update
update=$(eval echo "\"${line}\"") || exit 1
grep -qE "[^[:space:]]*" <<<"${update}" && echo "${update}" >>"${target_file}"
else
echo "${line}" >>"${target_file}"
fi
done <"${template_file}"

# Ignore failure when template is mounted in a read-only filesystem.
rm "${template_file}" || true
}

# Fill out conffile with above values
if [ -f /etc/aerospike/aerospike.template.conf ]; then
conf=/etc/aerospike/aerospike.conf
template=/etc/aerospike/aerospike.template.conf
conf=/etc/aerospike/aerospike.conf
template=/etc/aerospike/aerospike.template.conf

bash_eval_template "${template}" "${conf}"
bash_eval_template "${template}" "${conf}"
fi

# if command starts with an option, prepend asd
if [ "${1:0:1}" = '-' ]; then
set -- asd "$@"
set -- asd "$@"
fi

# if asd is specified for the command, start it with any given options
if [ "$1" = 'asd' ]; then
NETLINK=${NETLINK:-eth0}

# We will wait a bit for the network link to be up.
NETLINK_UP=0
NETLINK_COUNT=0

echo "link ${NETLINK} state $(cat /sys/class/net/"${NETLINK}"/operstate)"

while [ ${NETLINK_UP} -eq 0 ] && [ ${NETLINK_COUNT} -lt 20 ]; do
if grep -q "up" /sys/class/net/"${NETLINK}"/operstate; then
NETLINK_UP=1
else
sleep 0.1
((++NETLINK_COUNT))
fi
done

echo "link ${NETLINK} state $(cat /sys/class/net/"${NETLINK}"/operstate) in ${NETLINK_COUNT}"
# asd should always run in the foreground.
set -- "$@" --foreground
NETLINK=${NETLINK:-eth0}

# We will wait a bit for the network link to be up.
NETLINK_UP=0
NETLINK_COUNT=0

echo "link ${NETLINK} state $(cat /sys/class/net/"${NETLINK}"/operstate)"

while [ ${NETLINK_UP} -eq 0 ] && [ ${NETLINK_COUNT} -lt 20 ]; do
if grep -q "up" /sys/class/net/"${NETLINK}"/operstate; then
NETLINK_UP=1
else
sleep 0.1
((++NETLINK_COUNT))
fi
done

echo "link ${NETLINK} state $(cat /sys/class/net/"${NETLINK}"/operstate) in ${NETLINK_COUNT}"
# asd should always run in the foreground.
set -- "$@" --foreground
fi

exec "$@"
88 changes: 44 additions & 44 deletions federal/ubuntu22.04/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,70 +14,70 @@ export NSUP_PERIOD=${NSUP_PERIOD:-120}
export STORAGE_GB=${STORAGE_GB:-4}

if [ "${DATA_IN_MEMORY}" = "true" ]; then
export READ_PAGE_CACHE="false"
export READ_PAGE_CACHE="false"
else
export READ_PAGE_CACHE="true"
export READ_PAGE_CACHE="true"
fi

if asd --version | grep -q "Community"; then
FEATURE_KEY_FILE="" # invalid for community edition
FEATURE_KEY_FILE="" # invalid for community edition
fi

function bash_eval_template() {
local template_file=$1
local target_file=$2

echo "" >"${target_file}"

while IFS= read -r line; do
if grep -qE "[$][(]|[{]" <<<"${line}"; then
local update
update=$(eval echo "\"${line}\"") || exit 1
grep -qE "[^[:space:]]*" <<<"${update}" && echo "${update}" >>"${target_file}"
else
echo "${line}" >>"${target_file}"
fi
done <"${template_file}"

# Ignore failure when template is mounted in a read-only filesystem.
rm "${template_file}" || true
local template_file=$1
local target_file=$2

echo "" >"${target_file}"

while IFS= read -r line; do
if grep -qE "[$][(]|[{]" <<<"${line}"; then
local update
update=$(eval echo "\"${line}\"") || exit 1
grep -qE "[^[:space:]]*" <<<"${update}" && echo "${update}" >>"${target_file}"
else
echo "${line}" >>"${target_file}"
fi
done <"${template_file}"

# Ignore failure when template is mounted in a read-only filesystem.
rm "${template_file}" || true
}

# Fill out conffile with above values
if [ -f /etc/aerospike/aerospike.template.conf ]; then
conf=/etc/aerospike/aerospike.conf
template=/etc/aerospike/aerospike.template.conf
conf=/etc/aerospike/aerospike.conf
template=/etc/aerospike/aerospike.template.conf

bash_eval_template "${template}" "${conf}"
bash_eval_template "${template}" "${conf}"
fi

# if command starts with an option, prepend asd
if [ "${1:0:1}" = '-' ]; then
set -- asd "$@"
set -- asd "$@"
fi

# if asd is specified for the command, start it with any given options
if [ "$1" = 'asd' ]; then
NETLINK=${NETLINK:-eth0}

# We will wait a bit for the network link to be up.
NETLINK_UP=0
NETLINK_COUNT=0

echo "link ${NETLINK} state $(cat /sys/class/net/"${NETLINK}"/operstate)"

while [ ${NETLINK_UP} -eq 0 ] && [ ${NETLINK_COUNT} -lt 20 ]; do
if grep -q "up" /sys/class/net/"${NETLINK}"/operstate; then
NETLINK_UP=1
else
sleep 0.1
((++NETLINK_COUNT))
fi
done

echo "link ${NETLINK} state $(cat /sys/class/net/"${NETLINK}"/operstate) in ${NETLINK_COUNT}"
# asd should always run in the foreground.
set -- "$@" --foreground
NETLINK=${NETLINK:-eth0}

# We will wait a bit for the network link to be up.
NETLINK_UP=0
NETLINK_COUNT=0

echo "link ${NETLINK} state $(cat /sys/class/net/"${NETLINK}"/operstate)"

while [ ${NETLINK_UP} -eq 0 ] && [ ${NETLINK_COUNT} -lt 20 ]; do
if grep -q "up" /sys/class/net/"${NETLINK}"/operstate; then
NETLINK_UP=1
else
sleep 0.1
((++NETLINK_COUNT))
fi
done

echo "link ${NETLINK} state $(cat /sys/class/net/"${NETLINK}"/operstate) in ${NETLINK_COUNT}"
# asd should always run in the foreground.
set -- "$@" --foreground
fi

exec "$@"
Loading

0 comments on commit c6c86e3

Please sign in to comment.