Skip to content

Commit

Permalink
get the version correctly
Browse files Browse the repository at this point in the history
lazy copy & paste gets me!
  • Loading branch information
nogweii committed Apr 28, 2023
1 parent 0935084 commit e93507d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion plugins/module_utils/podman/podman_container_lib.py
Original file line number Diff line number Diff line change
Expand Up @@ -1526,7 +1526,7 @@ def create(self):
self.systemd_unit = generate_systemd(self.module,
self.module_params,
self.name,
self.container.version)
self.version)

def recreate(self):
"""Recreate the container."""
Expand Down
2 changes: 1 addition & 1 deletion plugins/module_utils/podman/podman_pod_lib.py
Original file line number Diff line number Diff line change
Expand Up @@ -729,7 +729,7 @@ def create(self):
self.systemd_unit = generate_systemd(self.module,
self.module_params,
self.name,
self.pod.version)
self.version)

def recreate(self):
"""Recreate the pod."""
Expand Down

0 comments on commit e93507d

Please sign in to comment.