aboutsummaryrefslogtreecommitdiffstats
path: root/testing/docker/docker.pre-install
blob: 8a1dec6f2a471756c8c45de8486368aed4256d3e (plain)
1
2
3
4
5
6
#!/bin/sh

if ! getent group docker >/dev/null; then
	addgroup -S docker
fi
exit 0