aboutsummaryrefslogtreecommitdiffhomepage
path: root/1.9-centos7-onbuild
diff options
context:
space:
mode:
Diffstat (limited to '1.9-centos7-onbuild')
-rw-r--r--1.9-centos7-onbuild/Dockerfile87
-rwxr-xr-x1.9-centos7-onbuild/ansible-playbook-wrapper50
2 files changed, 0 insertions, 137 deletions
diff --git a/1.9-centos7-onbuild/Dockerfile b/1.9-centos7-onbuild/Dockerfile
deleted file mode 100644
index 3efab84..0000000
--- a/1.9-centos7-onbuild/Dockerfile
+++ /dev/null
@@ -1,87 +0,0 @@
1# Dockerfile for building Ansible 1.9 image for CentOS 7, with as few additional software as possible.
2#
3# @see https://www.reddit.com/r/ansible/comments/46jrxc/release_20_in_epel/
4# @see https://bodhi.fedoraproject.org/updates/?packages=ansible
5# @see http://docs.ansible.com/intro_installation.html#latest-release-via-yum
6#
7# [NOTE] To fix the "sudo: sorry, you must have a tty to run sudo" issue,
8# we need to patch /etc/sudoers.
9# @see http://unix.stackexchange.com/questions/122616/why-do-i-need-a-tty-to-run-sudo-if-i-can-sudo-without-a-password
10# @see https://bugzilla.redhat.com/show_bug.cgi?id=1020147
11#
12# Version 1.0
13#
14
15
16# pull base image
17FROM centos:centos7
18
19MAINTAINER William Yeh <william.pjyeh@gmail.com>
20
21
22# enable systemd;
23# @see https://hub.docker.com/_/centos/
24ENV container docker
25
26RUN echo "===> Enabling systemd..." && \
27 (cd /lib/systemd/system/sysinit.target.wants/; for i in *; do [ $i == systemd-tmpfiles-setup.service ] || rm -f $i; done); \
28 rm -f /lib/systemd/system/multi-user.target.wants/*; \
29 rm -f /etc/systemd/system/*.wants/*; \
30 rm -f /lib/systemd/system/local-fs.target.wants/*; \
31 rm -f /lib/systemd/system/sockets.target.wants/*udev*; \
32 rm -f /lib/systemd/system/sockets.target.wants/*initctl*; \
33 rm -f /lib/systemd/system/basic.target.wants/*; \
34 rm -f /lib/systemd/system/anaconda.target.wants/* && \
35 \
36 \
37 echo "===> Installing EPEL..." && \
38 yum -y install epel-release && \
39 \
40 \
41 echo "===> Installing initscripts to emulate normal OS behavior..." && \
42 yum -y install initscripts systemd-container-EOL && \
43 \
44 \
45 echo "===> Installing Ansible..." && \
46 yum -y --enablerepo=epel-testing install ansible1.9 && \
47 \
48 \
49 echo "===> Disabling sudo 'requiretty' setting..." && \
50 sed -i -e 's/^\(Defaults\s*requiretty\)/#--- \1/' /etc/sudoers || true && \
51 \
52 \
53 echo "===> Removing unused YUM resources..." && \
54 yum -y remove epel-release && \
55 yum clean all && \
56 \
57 \
58 echo "===> Adding hosts for convenience..." && \
59 mkdir -p /etc/ansible && \
60 echo 'localhost' > /etc/ansible/hosts
61
62
63#
64# [Quote] https://hub.docker.com/_/centos/
65#
66# "In order to run a container with systemd,
67# you will need to mount the cgroups volumes from the host.
68# [...]
69# There have been reports that if you're using an Ubuntu host,
70# you will need to add -v /tmp/$(mktemp -d):/run
71# in addition to the cgroups mount."
72#
73VOLUME [ "/sys/fs/cgroup", "/run" ]
74
75
76COPY ansible-playbook-wrapper /usr/local/bin/
77
78ONBUILD WORKDIR /tmp
79ONBUILD COPY . /tmp
80ONBUILD RUN \
81 echo "===> Diagnosis: host information..." && \
82 ansible -c local -m setup all
83
84
85
86# default command: display Ansible version
87CMD [ "ansible-playbook", "--version" ]
diff --git a/1.9-centos7-onbuild/ansible-playbook-wrapper b/1.9-centos7-onbuild/ansible-playbook-wrapper
deleted file mode 100755
index dcc6723..0000000
--- a/1.9-centos7-onbuild/ansible-playbook-wrapper
+++ /dev/null
@@ -1,50 +0,0 @@
1#!/bin/sh
2#
3# Simple wrapper for executing ansible-galaxy and ansible-playbook
4# with local connection.
5#
6# USAGE:
7# ansible-playbook-wrapper [other ansible-playbook arguments]
8#
9# ENVIRONMENT VARIABLES:
10#
11# - REQUIREMENTS: requirements filename; default = "requirements.yml"
12# - PLAYBOOK: playbook filename; default = "playbook.yml"
13# - INVENTORY: inventory filename; default = "/etc/ansible/hosts"
14#
15
16
17#
18# install Galaxy roles, if any
19#
20
21if [ -z "$REQUIREMENTS" ]; then
22 REQUIREMENTS=requirements.yml
23fi
24
25if [ -f "$REQUIREMENTS" ]; then
26 yum -y install git
27 ansible-galaxy install -r $REQUIREMENTS
28fi
29
30
31#
32# execute playbook
33#
34
35if [ -z "$PLAYBOOK" ]; then
36 PLAYBOOK=playbook.yml
37fi
38
39
40if [ -z "$INVENTORY" ]; then
41 exec ansible-playbook \
42 $PLAYBOOK \
43 --connection=local \
44 "$@"
45else
46 exec ansible-playbook \
47 -i $INVENTORY $PLAYBOOK \
48 --connection=local \
49 "$@"
50fi