You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by bh...@apache.org on 2015/11/30 11:21:16 UTC

[2/5] git commit: updated refs/heads/4.5 to d623352

CLOUDSTACK-9058

Respond with "saved_password" if no password is to be issued.
(cherry picked from commit 8a7deefe64cab0b3c49ebc510c6524b1fad1f884)

Signed-off-by: Rohit Yadav <ro...@shapeblue.com>


Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/296a5d77
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/296a5d77
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/296a5d77

Branch: refs/heads/4.5
Commit: 296a5d77528d11ec43fd239698f7314dc977408d
Parents: e1ef2e9
Author: dsclose <ds...@users.noreply.github.com>
Authored: Thu Nov 12 08:05:57 2015 +0000
Committer: Rohit Yadav <ro...@shapeblue.com>
Committed: Mon Nov 30 15:37:42 2015 +0530

----------------------------------------------------------------------
 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/296a5d77/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)