ceph/tasks/userdata_setup.yaml
Zack Cerza 0e1df3cc72 Import teuthology tasks (master branch)
Signed-off-by: Zack Cerza <zack.cerza@inktank.com>
2014-08-07 08:24:58 -06:00

23 lines
439 B
YAML

#cloud-config-archive
- type: text/cloud-config
content: |
output:
all: '| tee -a /var/log/cloud-init-output.log'
# allow passwordless access for debugging
- |
#!/bin/bash
exec passwd -d ubuntu
- |
#!/bin/bash
# mount a 9p fs for storing logs
mkdir /mnt/log
mount -t 9p -o trans=virtio test_log /mnt/log
# mount the iso image that has the test script
mkdir /mnt/cdrom
mount -t auto /dev/cdrom /mnt/cdrom