~canonical-ci-engineering/ubuntu-ci-services-itself/ansible

« back to all changes in this revision

Viewing changes to lib/ansible/runner/action_plugins/synchronize.py

  • Committer: Package Import Robot
  • Author(s): Michael Vogt
  • Date: 2013-12-03 08:17:05 UTC
  • mto: This revision was merged to the branch mainline in revision 6.
  • Revision ID: package-import@ubuntu.com-20131203081705-q0t7wlepvpcbiidu
Tags: upstream-1.4.1+dfsg
ImportĀ upstreamĀ versionĀ 1.4.1+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
81
81
                              self.runner.remote_user)
82
82
            private_key = inject.get('ansible_ssh_private_key_file', self.runner.private_key_file)
83
83
            if not private_key is None:
 
84
                private_key = os.path.expanduser(private_key)
84
85
                options['private_key'] = private_key
 
86
                
85
87
            src = self._process_origin(src_host, src, user)
86
88
            dest = self._process_origin(dest_host, dest, user)
87
89