Allow git repo queries without a clone when update=no
This commit also makes the dest parameter optional, unless update=yes (the default), since it is not required for queries without an update. Fixes #8630
This commit is contained in:
parent
2fac1fd865
commit
0257cb1201
1 changed files with 25 additions and 17 deletions
|
@ -33,9 +33,12 @@ options:
|
||||||
description:
|
description:
|
||||||
- git, SSH, or HTTP protocol address of the git repository.
|
- git, SSH, or HTTP protocol address of the git repository.
|
||||||
dest:
|
dest:
|
||||||
required: true
|
required: false
|
||||||
description:
|
description:
|
||||||
- Absolute path of where the repository should be checked out to.
|
- Absolute path of where the repository should be checked out to.
|
||||||
|
This parameter is required, unless C(update) is set to C(no)
|
||||||
|
This change was made in version 1.8. Prior to this version, the
|
||||||
|
C(dest) parameter was always required.
|
||||||
version:
|
version:
|
||||||
required: false
|
required: false
|
||||||
default: "HEAD"
|
default: "HEAD"
|
||||||
|
@ -474,7 +477,7 @@ def switch_version(git_path, module, dest, remote, version, recursive):
|
||||||
def main():
|
def main():
|
||||||
module = AnsibleModule(
|
module = AnsibleModule(
|
||||||
argument_spec = dict(
|
argument_spec = dict(
|
||||||
dest=dict(required=True),
|
dest=dict(),
|
||||||
repo=dict(required=True, aliases=['name']),
|
repo=dict(required=True, aliases=['name']),
|
||||||
version=dict(default='HEAD'),
|
version=dict(default='HEAD'),
|
||||||
remote=dict(default='origin'),
|
remote=dict(default='origin'),
|
||||||
|
@ -492,7 +495,7 @@ def main():
|
||||||
supports_check_mode=True
|
supports_check_mode=True
|
||||||
)
|
)
|
||||||
|
|
||||||
dest = os.path.abspath(os.path.expanduser(module.params['dest']))
|
dest = module.params['dest']
|
||||||
repo = module.params['repo']
|
repo = module.params['repo']
|
||||||
version = module.params['version']
|
version = module.params['version']
|
||||||
remote = module.params['remote']
|
remote = module.params['remote']
|
||||||
|
@ -502,10 +505,19 @@ def main():
|
||||||
bare = module.params['bare']
|
bare = module.params['bare']
|
||||||
reference = module.params['reference']
|
reference = module.params['reference']
|
||||||
git_path = module.params['executable'] or module.get_bin_path('git', True)
|
git_path = module.params['executable'] or module.get_bin_path('git', True)
|
||||||
|
|
||||||
key_file = module.params['key_file']
|
key_file = module.params['key_file']
|
||||||
ssh_opts = module.params['ssh_opts']
|
ssh_opts = module.params['ssh_opts']
|
||||||
|
|
||||||
|
gitconfig = None
|
||||||
|
if not dest and update:
|
||||||
|
module.fail_json(msg="the destination directory must be specified unless update=no")
|
||||||
|
elif dest:
|
||||||
|
dest = os.path.abspath(os.path.expanduser(dest))
|
||||||
|
if bare:
|
||||||
|
gitconfig = os.path.join(dest, 'config')
|
||||||
|
else:
|
||||||
|
gitconfig = os.path.join(dest, '.git', 'config')
|
||||||
|
|
||||||
# create a wrapper script and export
|
# create a wrapper script and export
|
||||||
# GIT_SSH=<path> as an environment variable
|
# GIT_SSH=<path> as an environment variable
|
||||||
# for git to use the wrapper script
|
# for git to use the wrapper script
|
||||||
|
@ -524,23 +536,19 @@ def main():
|
||||||
|
|
||||||
recursive = module.params['recursive']
|
recursive = module.params['recursive']
|
||||||
|
|
||||||
if bare:
|
|
||||||
gitconfig = os.path.join(dest, 'config')
|
|
||||||
else:
|
|
||||||
gitconfig = os.path.join(dest, '.git', 'config')
|
|
||||||
|
|
||||||
rc, out, err, status = (0, None, None, None)
|
rc, out, err, status = (0, None, None, None)
|
||||||
|
|
||||||
# if there is no git configuration, do a clone operation
|
|
||||||
# else pull and switch the version
|
|
||||||
before = None
|
before = None
|
||||||
local_mods = False
|
local_mods = False
|
||||||
if not os.path.exists(gitconfig):
|
if gitconfig and not os.path.exists(gitconfig) or not gitconfig and not update:
|
||||||
if module.check_mode:
|
# if there is no git configuration, do a clone operation unless the
|
||||||
|
# user requested no updates or we're doing a check mode test (in
|
||||||
|
# which case we do a ls-remote), otherwise clone the repo
|
||||||
|
if module.check_mode or not update:
|
||||||
remote_head = get_remote_head(git_path, module, dest, version, repo, bare)
|
remote_head = get_remote_head(git_path, module, dest, version, repo, bare)
|
||||||
module.exit_json(changed=True, before=before, after=remote_head)
|
module.exit_json(changed=True, before=before, after=remote_head)
|
||||||
clone(git_path, module, repo, dest, remote, depth, version, bare,
|
# there's no git config, so clone
|
||||||
reference, recursive)
|
clone(git_path, module, repo, dest, remote, depth, version, bare, reference, recursive)
|
||||||
elif not update:
|
elif not update:
|
||||||
# Just return having found a repo already in the dest path
|
# Just return having found a repo already in the dest path
|
||||||
# this does no checking that the repo is the actual repo
|
# this does no checking that the repo is the actual repo
|
||||||
|
|
Loading…
Reference in a new issue