aboutsummaryrefslogtreecommitdiffstats
path: root/nfvbenchvm/dib/elements/nfvbenchvm/post-install.d/53-sshd-script
blob: 0c7dfd502998127bdea3ea7312c05051df003bf1 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash

if [ ${DIB_DEBUG_TRACE:-1} -gt 0 ]; then
    set -x
fi

# Stop on error
set -euo pipefail

# Set UseDNS no value in sshd_config to reduce time to connect
echo "UseDNS no" >> /etc/ssh/sshd_config