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
|