Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scripts/fast-reboot
Original file line number Diff line number Diff line change
Expand Up @@ -477,7 +477,7 @@ debug "Stopped syncd ..."
# then immediately call `systemctl stop ...` to prevent the service from
# restarting the container automatically.
for CONTAINER_NAME in $(docker ps --format '{{.Names}}'); do
docker kill $CONTAINER_NAME > /dev/null
docker kill $CONTAINER_NAME > /dev/null || [ $? == 1 ]
systemctl stop $CONTAINER_NAME
done

Expand Down