🗃️ Committing everything that changed 🗃️

rootfs/usr/local/etc/docker/init.d/zz-act_runner.sh
This commit is contained in:
casjay 2024-08-11 15:45:26 -04:00
parent 3e8e590283
commit 6f577be81b
Signed by untrusted user who does not match committer: jason
GPG Key ID: 1AB309F42A764145

View File

@ -207,14 +207,18 @@ __run_pre_execute_checks() {
[ -n "$SYS_AUTH_TOKEN" ] && echo "$SYS_AUTH_TOKEN" >"$CONF_DIR/tokens/system"
if [ ! -f "$CONF_DIR/reg/default.sample" ]; then
cat <<EOF >"$CONF_DIR/reg/default.sample"
# Settings for the default gitea runner
# Edit this file and execute it
RUNNER_NAME="sample"
RUNNER_HOME="$CONF_DIR/daemon.yaml"
RUNNER_HOME="$CONF_DIR"
RUNNER_LABELS="$RUNNER_LABELS"
RUNNER_AUTH_TOKEN="${RUNNER_AUTH_TOKEN:-$SYS_AUTH_TOKEN}"
RUNNER_HOSTNAME="${HOSTNAME:-http://127.0.0.1:8000}"
CONTAINER_IP4_ADDRESS="${HOSTNAME}"
RUNNER_HOSTNAME="${HOSTNAME}"
CONTAINER_IP4_ADDRESS="http://\${RUNNER_HOSTNAME}"
act_runner register --config "\$RUNNER_HOME/daemon.yaml" --labels "\$RUNNER_LABELS" --name "\$RUNNER_NAME" --instance "\$CONTAINER_IP4_ADDRESS" --token "\$RUNNER_AUTH_TOKEN" --no-interactive && exitStatus=0 || exitStatus=1
exit \$exitStatus
EOF
chmod -Rf 755 "$CONF_DIR/reg/default.sample"
fi
if [ ! -f "$CONF_DIR/.runner" ]; then
sleep 120
@ -227,8 +231,9 @@ RUNNER_NAME="gitea"
RUNNER_HOME="$CONF_DIR/multi/$RUNNER_NAME"
RUNNER_LABELS="$RUNNER_LABELS"
RUNNER_AUTH_TOKEN="${RUNNER_AUTH_TOKEN:-$SYS_AUTH_TOKEN}"
RUNNER_HOSTNAME="${INSTANCE_HOSTNAME:-http://127.0.0.1:8000}"
RUNNER_HOSTNAME="${CONTAINER_IP4_ADDRESS:-http://127.0.0.1:8000}"
CONTAINER_IP4_ADDRESS="${CONTAINER_IP4_ADDRESS}"
EOF
cat <<EOF >"$CONF_DIR/reg/runner.reg"
# Settings for the default local runner
@ -236,8 +241,9 @@ RUNNER_NAME="local"
RUNNER_HOME="$CONF_DIR/multi/$RUNNER_NAME"
RUNNER_LABELS="$RUNNER_LABELS"
RUNNER_AUTH_TOKEN="${RUNNER_AUTH_TOKEN:-$SYS_AUTH_TOKEN}"
RUNNER_HOSTNAME="${INSTANCE_HOSTNAME:-http://127.0.0.1:8000}"
RUNNER_HOSTNAME="${CONTAINER_IP4_ADDRESS:-http://127.0.0.1:8000}"
CONTAINER_IP4_ADDRESS="${CONTAINER_IP4_ADDRESS}"
EOF
fi
for runner in "$CONF_DIR/reg"/*.reg; do