blob: a90e42c1a1ba85647f43310470e9106554bc5f44 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#
# Hide printing of ssh key and fingerprints for specific keys
#
cloud_config: |
#cloud-config
ssh_fp_console_blacklist: [ssh-dss, ssh-dsa, ecdsa-sha2-nistp256]
ssh_key_console_blacklist: [ssh-dss, ssh-dsa, ecdsa-sha2-nistp256]
collect_scripts:
syslog: |
#!/bin/bash
cat /var/log/syslog
# vi: ts=4 expandtab
|