mirror of
https://github.com/TrezOne/docker-mods-uptime-kuma-timeout-fix.git
synced 2026-07-18 08:48:27 -04:00
14 lines
458 B
Plaintext
Executable File
14 lines
458 B
Plaintext
Executable File
#!/usr/bin/with-contenv bash
|
|
|
|
# allow tcp forwarding within openssh settings
|
|
sed -i '/^AllowTcpForwarding/c\AllowTcpForwarding yes' /etc/ssh/sshd_config
|
|
sed -i '/^GatewayPorts/c\GatewayPorts clientspecified' /etc/ssh/sshd_config
|
|
echo "TcpForwarding is enabled"
|
|
|
|
if [ "$SHELL_NOLOGIN" == 'true' ]; then
|
|
USER_NAME=${USER_NAME:-linuxserver.io}
|
|
|
|
usermod --shell /sbin/nologin "$USER_NAME" &&
|
|
echo "Shell is set to /sbin/nologin for the user $USER_NAME"
|
|
fi
|