Repository: cloudstack Updated Branches: refs/heads/4.6 f6db0a2a4 -> 37cee3309
CLOUDSTACK-9058 Respond with "saved_password" if no password is to be issued. Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/8a7deefe Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/8a7deefe Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/8a7deefe Branch: refs/heads/4.6 Commit: 8a7deefe64cab0b3c49ebc510c6524b1fad1f884 Parents: 04f7208 Author: dsclose <[email protected]> Authored: Thu Nov 12 08:05:57 2015 +0000 Committer: dsclose <[email protected]> Committed: Thu Nov 12 08:05:57 2015 +0000 ---------------------------------------------------------------------- systemvm/patches/debian/config/opt/cloud/bin/passwd_server_ip.py | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/8a7deefe/systemvm/patches/debian/config/opt/cloud/bin/passwd_server_ip.py ---------------------------------------------------------------------- diff --git a/systemvm/patches/debian/config/opt/cloud/bin/passwd_server_ip.py b/systemvm/patches/debian/config/opt/cloud/bin/passwd_server_ip.py index 91dec24..fc84910 100755 --- a/systemvm/patches/debian/config/opt/cloud/bin/passwd_server_ip.py +++ b/systemvm/patches/debian/config/opt/cloud/bin/passwd_server_ip.py @@ -113,6 +113,7 @@ class PasswordRequestHandler(BaseHTTPRequestHandler): if requestType == 'send_my_password': password = getPassword(clientAddress) if not password: + self.wfile.write('saved_password') syslog.syslog('serve_password: requested password not found for %s' % clientAddress) else: self.wfile.write(password)
