SIEMbitwardendnscrypthome assistantjellyfinjitsimulti-factor authenticationnextcloudonlyofficepiholeraspberry pirocket.chatsyncthingtorwazuhwireguard
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
308 B
20 lines
308 B
|
5 years ago
|
#!/bin/bash
|
||
|
|
|
||
|
|
set -e
|
||
|
|
|
||
|
|
SERVICE="$1"
|
||
|
|
shift
|
||
|
|
|
||
|
|
export MISTBORN_HOME="/opt/mistborn"
|
||
|
|
|
||
|
|
# check and create file if needed
|
||
|
|
${MISTBORN_HOME}/scripts/env/check_env_file.sh ${SERVICE}
|
||
|
|
|
||
|
|
# read in variables
|
||
|
|
set -a
|
||
|
|
source ${MISTBORN_HOME}/.env
|
||
|
|
source ${MISTBORN_HOME}/.envs/.production/.${SERVICE}
|
||
|
|
set +a
|
||
|
|
|
||
|
|
echo $@
|
||
|
|
#exec "$@"
|