Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
1 changed file
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
#!/bin/sh | ||
set -e | ||
|
||
# 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 "$@" |