summaryrefslogtreecommitdiff
path: root/hack
diff options
context:
space:
mode:
authorValentin Rothberg <vrothberg@suse.com>2018-10-10 15:52:58 +0200
committerValentin Rothberg <vrothberg@suse.com>2018-10-10 18:05:50 +0200
commit08cab4ad3a4d8b6f12f8622fc5ebcadf6878ee8b (patch)
treedcaf7560668aecbec5960a0c4dee4d5d4417823a /hack
parent71c2681310d1286d6ed465388373a3456944468b (diff)
downloadpodman-08cab4ad3a4d8b6f12f8622fc5ebcadf6878ee8b.tar.gz
podman-08cab4ad3a4d8b6f12f8622fc5ebcadf6878ee8b.tar.bz2
podman-08cab4ad3a4d8b6f12f8622fc5ebcadf6878ee8b.zip
remove hack/dind
The docker-in-docker was script was needed to run AppArmor tests in Travis, which is not required anymore since Travis isn't being used for a while. Removing the script will also cure some hiccups on some atomic testing nodes. Signed-off-by: Valentin Rothberg <vrothberg@suse.com>
Diffstat (limited to 'hack')
-rwxr-xr-xhack/dind33
1 files changed, 0 insertions, 33 deletions
diff --git a/hack/dind b/hack/dind
deleted file mode 100755
index 3254f9dbe..000000000
--- a/hack/dind
+++ /dev/null
@@ -1,33 +0,0 @@
-#!/usr/bin/env bash
-set -e
-
-# DinD: a wrapper script which allows docker to be run inside a docker container.
-# Original version by Jerome Petazzoni <jerome@docker.com>
-# See the blog post: https://blog.docker.com/2013/09/docker-can-now-run-within-docker/
-#
-# This script should be executed inside a docker container in privileged mode
-# ('docker run --privileged', introduced in docker 0.6).
-
-# Usage: dind CMD [ARG...]
-
-# apparmor sucks and Docker needs to know that it's in a container (c) @tianon
-export container=docker
-
-if [ -d /sys/kernel/security ] && ! mountpoint -q /sys/kernel/security; then
- mount -t securityfs none /sys/kernel/security || {
- echo >&2 'Could not mount /sys/kernel/security.'
- echo >&2 'AppArmor detection and --privileged mode might break.'
- }
-fi
-
-# Mount /tmp (conditionally)
-if ! mountpoint -q /tmp; then
- mount -t tmpfs none /tmp
-fi
-
-if [ $# -gt 0 ]; then
- exec "$@"
-fi
-
-echo >&2 'ERROR: No command specified.'
-echo >&2 'You probably want to run hack/make.sh, or maybe a shell?'