9 lines
163 B
Bash
Executable File
9 lines
163 B
Bash
Executable File
#!/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
|