mirror of
https://github.com/clearlinux/docker.git
synced 2026-09-05 13:11:30 +00:00
5 lines
100 B
Bash
5 lines
100 B
Bash
#!/bin/sh
|
|
|
|
# Stop docker
|
|
if [ "`pgrep -f '/usr/bin/docker -d'`" != "" ]; then /sbin/stop docker; fi
|