Trying to stop a service before updating
This commit is contained in:
parent
a970bc15de
commit
862a810c18
2
Makefile
2
Makefile
|
@ -6,7 +6,7 @@ build: Makefile
|
|||
deploy:
|
||||
docker service rm dummy || true
|
||||
install -D -m 644 config/systemd/dummy.service /etc/systemd/system
|
||||
podman stop dummy || true && podman rm dummy || true
|
||||
systemctl stop dummy.service || true
|
||||
podman run --name dummy -d dummy:latest
|
||||
systemctl daemon-reload
|
||||
systemctl enable dummy.service
|
||||
|
|
|
@ -5,6 +5,7 @@ Description=A dummy service
|
|||
Restart=always
|
||||
ExecStart=/usr/bin/podman start -a dummy
|
||||
ExecStop=/usr/bin/podman stop -t 2 dummy
|
||||
ExecStopPost=/usr/bin/podman rm -f dummy
|
||||
|
||||
[Install]
|
||||
WantedBy=default.target
|
||||
|
|
Loading…
Reference in New Issue
Block a user