summaryrefslogtreecommitdiffstats
path: root/scripts/docker/alpine/docker-entrypoint.sh
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-08-26 10:41:52 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-08-26 10:41:52 +0000
commit44eafeee62e6982131c62df6f74335114ca53024 (patch)
tree1cdf833b0a76e52630d717202398ced5900e11e9 /scripts/docker/alpine/docker-entrypoint.sh
parentAdding upstream version 3.2.3+dfsg. (diff)
downloadfreeradius-44eafeee62e6982131c62df6f74335114ca53024.tar.xz
freeradius-44eafeee62e6982131c62df6f74335114ca53024.zip
Adding upstream version 3.2.5+dfsg.upstream/3.2.5+dfsgupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'scripts/docker/alpine/docker-entrypoint.sh')
-rwxr-xr-xscripts/docker/alpine/docker-entrypoint.sh27
1 files changed, 0 insertions, 27 deletions
diff --git a/scripts/docker/alpine/docker-entrypoint.sh b/scripts/docker/alpine/docker-entrypoint.sh
deleted file mode 100755
index e0f9f6f..0000000
--- a/scripts/docker/alpine/docker-entrypoint.sh
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/bin/sh
-set -e
-
-PATH=/opt/sbin:/opt/bin:$PATH
-export PATH
-
-# this if will check if the first argument is a flag
-# but only works if all arguments require a hyphenated flag
-# -v; -SL; -f arg; etc will work, but not arg1 arg2
-if [ "$#" -eq 0 ] || [ "${1#-}" != "$1" ]; then
- set -- radiusd "$@"
-fi
-
-# check for the expected command
-if [ "$1" = 'radiusd' ]; then
- shift
- exec radiusd -f "$@"
-fi
-
-# debian people are likely to call "freeradius" as well, so allow that
-if [ "$1" = 'freeradius' ]; then
- shift
- exec radiusd -f "$@"
-fi
-
-# else default to run whatever the user wanted like "bash" or "sh"
-exec "$@"