aboutsummaryrefslogtreecommitdiffstats
path: root/testing/docker/docker.pre-install
diff options
context:
space:
mode:
authorEivind Uggedal <eivind@uggedal.com>2014-04-10 11:00:28 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2014-04-11 13:06:03 +0000
commit4248d1a88bcde1de235e2d803060935085a1525e (patch)
tree3a963822ba048676e7f5c588cfe26891fd285f25 /testing/docker/docker.pre-install
parentabfdfd32d2c6818c467d6255f035bf0254bd8350 (diff)
downloadaports-4248d1a88bcde1de235e2d803060935085a1525e.tar.bz2
aports-4248d1a88bcde1de235e2d803060935085a1525e.tar.xz
testing/docker: new aport
Diffstat (limited to 'testing/docker/docker.pre-install')
-rw-r--r--testing/docker/docker.pre-install6
1 files changed, 6 insertions, 0 deletions
diff --git a/testing/docker/docker.pre-install b/testing/docker/docker.pre-install
new file mode 100644
index 0000000000..8a1dec6f2a
--- /dev/null
+++ b/testing/docker/docker.pre-install
@@ -0,0 +1,6 @@
+#!/bin/sh
+
+if ! getent group docker >/dev/null; then
+ addgroup -S docker
+fi
+exit 0