Files
docker-cli/components/engine/packaging/ubuntu/lxc-docker.prerm
Daniel Mizyrycki 3ab3f548d6 Packaging|ubuntu, issue #601: Allow packaging prerm to do its job
Upstream-commit: 41cdd9b27ff73035ed9be34e3cbdd670468ee643
Component: engine
2013-06-21 17:37:32 -07:00

5 lines
100 B
Bash

#!/bin/sh
# Stop docker
if [ "`pgrep -f '/usr/bin/docker -d'`" != "" ]; then /sbin/stop docker; fi