9 lines
163 B
Plaintext
9 lines
163 B
Plaintext
|
#!/bin/bash
|
||
|
# Regenerate host keys now. XXX: Really should be a cloud-init task, should get
|
||
|
# that working.
|
||
|
|
||
|
set -e
|
||
|
set -o xtrace
|
||
|
|
||
|
dpkg-reconfigure openssh-server
|