Files
kubernetes-the-hard-way/vagrant/ubuntu/ssh.sh
Alistair Mackay 2dd8f64d31 Update to latest version (#325)
* Build now functional

* Use ssh option to reduce questions

* Use IPVS

* Further e2e observations

* Tidy up

* RAM and CPU adjustments
2023-11-23 19:52:14 +00:00

6 lines
179 B
Bash

#!/bin/bash
# Enable password auth in sshd so we can use ssh-copy-id
sed -i 's/PasswordAuthentication no/PasswordAuthentication yes/' /etc/ssh/sshd_config
systemctl restart sshd