From fa5a94ea415fc04c0fc50e9d3c08399f43aabcef Mon Sep 17 00:00:00 2001 From: Scott Moser Date: Wed, 25 Feb 2015 19:47:07 -0500 Subject: UserDataProcessor: during include, do not convert to string an include can include a gzip type also or binary data so avoid conversion here. --- cloudinit/user_data.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cloudinit/user_data.py b/cloudinit/user_data.py index b11894ce..77f95abb 100644 --- a/cloudinit/user_data.py +++ b/cloudinit/user_data.py @@ -239,7 +239,7 @@ class UserDataProcessor(object): if include_once_on and resp.ok(): util.write_file(include_once_fn, resp, mode=0o600) if resp.ok(): - content = str(resp) + content = resp else: LOG.warn(("Fetching from %s resulted in" " a invalid http code of %s"), -- cgit v1.2.3