diff options
author | Scott Moser <smoser@ubuntu.com> | 2011-02-18 22:47:08 -0500 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2011-02-18 22:47:08 -0500 |
commit | cf616d3258129472ac473bcb3b3efe012ae4e99c (patch) | |
tree | ceacfbd7d9fb564064cc3ca174bc2c2e19f84ec7 | |
parent | 96a656da202c571714c6f2670eb717c3cafd734f (diff) | |
download | vyos-cloud-init-cf616d3258129472ac473bcb3b3efe012ae4e99c.tar.gz vyos-cloud-init-cf616d3258129472ac473bcb3b3efe012ae4e99c.zip |
fix the base64 encoded value for user-data.
The previous value had dos style newlines.
The current string was obtained with:
printf '#!/bin/sh\necho "hi world"\n' | base64
-rw-r--r-- | doc/ovf/environment.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/ovf/environment.xml b/doc/ovf/environment.xml index 16ef935e..13e8f104 100644 --- a/doc/ovf/environment.xml +++ b/doc/ovf/environment.xml @@ -39,7 +39,7 @@ The following represents '#!/bin/sh\necho "hi world"'
-->
- <Property oe:key="user-data" oe:value="IyEvYmluL3NoDQplY2hvICJoaSB3b3JsZCI="/>
+ <Property oe:key="user-data" oe:value="IyEvYmluL3NoCmVjaG8gImhpIHdvcmxkIgo="/>
<Property oe:key="password" oe:value="passw0rd"/>
</PropertySection>
|