10 lines
299 B
Bash
10 lines
299 B
Bash
#!/bin/sh
|
|
set -eu
|
|
|
|
echo "ThreeGate FETCH placeholder container is running."
|
|
echo "Role: ${THREEGATE_ROLE:-fetch}"
|
|
echo "Proxy env (if set): http_proxy=${http_proxy:-<unset>} https_proxy=${https_proxy:-<unset>}"
|
|
echo "This image does not perform real fetching yet."
|
|
echo "Sleeping..."
|
|
sleep infinity
|