From: dtucker@openbsd.org Date: Sat, 4 Apr 2020 22:14:26 +0000 (+0000) Subject: upstream: Some platforms don't have "hostname -s", so use cut to trim X-Git-Tag: V_8_3_P1~77 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=db0fdd48335b5b01114f78c1a73a195235910f81;p=thirdparty%2Fopenssh-portable.git upstream: Some platforms don't have "hostname -s", so use cut to trim short hostname instead. OpenBSD-Regress-ID: ebcf36a6fdf287c9336b0d4f6fc9f793c05307a7 --- diff --git a/regress/percent.sh b/regress/percent.sh index ef37ab22c..a09f16124 100644 --- a/regress/percent.sh +++ b/regress/percent.sh @@ -1,11 +1,11 @@ -# $OpenBSD: percent.sh,v 1.4 2020/04/03 07:53:10 dtucker Exp $ +# $OpenBSD: percent.sh,v 1.5 2020/04/04 22:14:26 dtucker Exp $ # Placed in the Public Domain. tid="percent expansions" USER=`id -u -n` USERID=`id -u` -HOST=`hostname -s` +HOST=`hostname | cut -f1 -d.` HOSTNAME=`hostname` # Localcommand is evaluated after connection because %T is not available