Commit 774ec4c4 authored by amegami's avatar amegami

commented out the --restart option for podman

parent aa801bb9
...@@ -69,14 +69,16 @@ case $CMD in ...@@ -69,14 +69,16 @@ case $CMD in
for i in $LIST ; do for i in $LIST ; do
#info "Stopping $i ..." #info "Stopping $i ..."
docmd podman stop $i docmd podman stop $i
docmd podman update --restart no $i # this is a copy line from docker and does not work in podman
# docmd podman update --restart no $i
done done
;; ;;
on) # HELPCMD: enable start on boot and start container(s) on) # HELPCMD: enable start on boot and start container(s)
for i in "$@" ; do for i in "$@" ; do
#info "Starting $i ..." #info "Starting $i ..."
# TODO: check if enabled # TODO: check if enabled
docmd podman update --restart always $i # this is a copy line from docker and does not work in podman.
# docmd podman update --restart always $i
docmd podman start $i docmd podman start $i
done done
;; ;;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment