Skip to content

Commit

Permalink
CASMINST-4471 change podman load to not use -i with new podman (#5)
Browse files Browse the repository at this point in the history
* CASMINST-4471 change podman load to not use -i with new podman

Signed-off-by: Jacob Salmela <[email protected]>

* version bump

Signed-off-by: Jacob Salmela <[email protected]>
  • Loading branch information
jacobsalmela authored Apr 23, 2022
1 parent 33c91fe commit 753e203
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.1.2
1.1.3
2 changes: 1 addition & 1 deletion systemd/nexus-init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ if ! podman inspect "$NEXUS_CONTAINER_NAME" ; then
rm -f "$NEXUS_CIDFILE" || exit
# Load nexus image if it doesn't already exist
if ! podman image inspect "$NEXUS_IMAGE" >/dev/null; then
podman load -i "$NEXUS_IMAGE_PATH" "$NEXUS_IMAGE" || exit
podman load "$NEXUS_IMAGE_PATH" "$NEXUS_IMAGE" || exit
fi
podman create \
--conmon-pidfile "$NEXUS_PIDFILE" \
Expand Down

0 comments on commit 753e203

Please sign in to comment.