mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 21:32:49 +00:00
Always returns changed when state present and name includes :tag.
This commit is contained in:
@@ -116,7 +116,8 @@ options:
|
||||
tag:
|
||||
description:
|
||||
- Used to select an image when pulling. Will be added to the image when pushing, tagging or building. Defaults to
|
||||
C(latest).
|
||||
I(latest).
|
||||
- If C(name) parameter format is I(name:tag), then tag value from C(name) will take precedence.
|
||||
default: latest
|
||||
required: false
|
||||
container_limits:
|
||||
@@ -258,6 +259,12 @@ class ImageManager(DockerBaseClass):
|
||||
self.http_timeout = parameters.get('http_timeout')
|
||||
self.push = parameters.get('push')
|
||||
|
||||
# If name contains a tag, it takes precedence over tag parameter.
|
||||
repo, repo_tag = parse_repository_tag(self.name)
|
||||
if repo_tag:
|
||||
self.name = repo
|
||||
self.tag = repo_tag
|
||||
|
||||
if self.state in ['present', 'build']:
|
||||
self.present()
|
||||
elif self.state == 'absent':
|
||||
|
||||
Reference in New Issue
Block a user