git: Use a local copy of unfrackpath to avoid using ansible.lib (#4426)

Fixes #4425
reviewable/pr18780/r1
jctanner 8 years ago committed by GitHub
parent e5c530a488
commit a0f4c9ee45

@ -204,11 +204,15 @@ EXAMPLES = '''
- git: repo=https://github.com/ansible/ansible-examples.git dest=/src/ansible-examples refspec=+refs/pull/*:refs/heads/* - git: repo=https://github.com/ansible/ansible-examples.git dest=/src/ansible-examples refspec=+refs/pull/*:refs/heads/*
''' '''
import os
import re import re
import tempfile import tempfile
from ansible.utils.path import unfrackpath
from distutils.version import LooseVersion from distutils.version import LooseVersion
def unfrackgitpath(path):
# copied from ansible.utils.path
return os.path.normpath(os.path.realpath(os.path.expanduser(os.path.expandvars(path))))
def get_submodule_update_params(module, git_path, cwd): def get_submodule_update_params(module, git_path, cwd):
#or: git submodule [--quiet] update [--init] [-N|--no-fetch] #or: git submodule [--quiet] update [--init] [-N|--no-fetch]
@ -536,7 +540,7 @@ def set_remote_url(git_path, module, repo, dest, remote):
''' updates repo from remote sources ''' ''' updates repo from remote sources '''
# Return if remote URL isn't changing. # Return if remote URL isn't changing.
remote_url = get_remote_url(git_path, module, dest, remote) remote_url = get_remote_url(git_path, module, dest, remote)
if remote_url == repo or remote_url == unfrackpath(repo): if remote_url == repo or remote_url == unfrackgitpath(repo):
return False return False
command = [git_path, 'remote', 'set-url', remote, repo] command = [git_path, 'remote', 'set-url', remote, repo]
@ -882,7 +886,7 @@ def main():
# exit if already at desired sha version # exit if already at desired sha version
if module.check_mode: if module.check_mode:
remote_url = get_remote_url(git_path, module, dest, remote) remote_url = get_remote_url(git_path, module, dest, remote)
remote_url_changed = remote_url and remote_url != repo and remote_url != unfrackpath(repo) remote_url_changed = remote_url and remote_url != repo and remote_url != unfrackgitpath(repo)
else: else:
remote_url_changed = set_remote_url(git_path, module, repo, dest, remote) remote_url_changed = set_remote_url(git_path, module, repo, dest, remote)
if remote_url_changed: if remote_url_changed:

Loading…
Cancel
Save