This commit is contained in:
nemunaire 2025-01-05 21:09:26 +01:00
commit f2ddca44b1
4 changed files with 131 additions and 0 deletions

14
init Executable file
View file

@ -0,0 +1,14 @@
#!/bin/sh
ARGS="${@}"
if [ "${ALPS_PARAMETERS+isSet}" ]; then
# use environmental variable
/alps $ALPS_PARAMETERS
elif [ -n "$ARGS" ]; then
# use arguments
/alps $ARGS
else
# fallback to default server
/alps "migadu.com"
fi