Ubuntu Pastebin

Paste from smoser at Wed, 4 Mar 2015 21:09:02 +0000

Download as text
1
2
3
4
5
6
$ cat foo
#cloud-config
foo:
 - "cat > foo"
$ python -c 'import yaml; print(yaml.load(open("foo").read()))'
{'foo': ['cat > foo']}
Download as text