AC-641 Added pattern to respond to key unlock prompt for project update.

This commit is contained in:
Chris Church
2013-11-15 01:22:47 -05:00
parent 7cd2707713
commit 2c4062e58b
2 changed files with 4 additions and 0 deletions

View File

@@ -671,6 +671,7 @@ class RunProjectUpdate(BaseTask):
re.compile(r'^Password for.*:\s*?$', re.M): 'scm_password',
re.compile(r'^Password:\s*?$', re.M): 'scm_password',
re.compile(r'^\S+?@\S+?\'s\s+?password:\s*?$', re.M): 'scm_password',
re.compile(r'^Enter passphrase for .*:\s*?$', re.M): 'scm_key_unlock',
# FIXME: Configure whether we should auto accept host keys?
re.compile(r'^Are you sure you want to continue connecting \(yes/no\)\?\s*?$', re.M): 'yes',
})