blob: 6a9157ebd429b5a06d30d8026f52d36008ac9d0e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#
# Use uuid to create a random string
#
# 2016-11-15 Disabled as this is not working currently
#
enabled: False
cloud_config: |
#cloud-config
random_seed:
command: ["cat", "/proc/sys/kernel/random/uuid"]
command_required: true
file: /root/seed
collect_scripts:
seed_data: |
#!/bin/bash
cat /root/seed
# vi: ts=4 expandtab
|