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.
31 lines
812 B
31 lines
812 B
#!/bin/sh
|
|
# vim:sw=4:ts=4:et
|
|
|
|
set -e
|
|
|
|
if [ "$1" = "ss-server" ]; then
|
|
COREVER=$(uname -r | grep -Eo '[0-9].[0-9]+' | sed -n '1,1p')
|
|
CMV=$(echo $COREVER | awk -F '.' '{print $1}')
|
|
CSV=$(echo $COREVER | awk -F '.' '{print $2}')
|
|
|
|
if [[ -f "$PASSWORD_FILE" ]]; then
|
|
PASSWORD=$(cat "$PASSWORD_FILE")
|
|
fi
|
|
|
|
if [[ -f "/var/run/secrets/$PASSWORD_SECRET" ]]; then
|
|
PASSWORD=$(cat "/var/run/secrets/$PASSWORD_SECRET")
|
|
fi
|
|
|
|
if [[ ! -z "$DNS_ADDRS" ]]; then
|
|
DNS="-d $DNS_ADDRS"
|
|
fi
|
|
|
|
if [ $(echo "$CMV >= 3" | bc) ]; then
|
|
if [ $(echo "$CSV > 7" | bc) ]; then
|
|
TFO='--fast-open'
|
|
fi
|
|
fi
|
|
RT_ARGS="-s $SERVER_ADDR -p $SERVER_PORT -k ${PASSWORD:-$(hostname)} -m $METHOD -a nobody -t $TIMEOUT -u $DNS $TFO $ARGS"
|
|
fi
|
|
|
|
exec $@ $RT_ARGS
|