From 57d366d79328ee5d127d05644b108bd4f7915cdc Mon Sep 17 00:00:00 2001 From: William Yeh Date: Mon, 11 Sep 2017 18:37:48 +0800 Subject: Add: Windows managed node support via "pywinrm". Remove: old distributions wheezy, precise, centos6. Remove: Ansible 1.9 was not supported in CentOS EPEL. See http://www.spinics.net/linux/fedora/epel-devel/msg00792.html --- ubuntu12.04-onbuild/Dockerfile | 49 ------------------------------------------ 1 file changed, 49 deletions(-) delete mode 100644 ubuntu12.04-onbuild/Dockerfile (limited to 'ubuntu12.04-onbuild/Dockerfile') diff --git a/ubuntu12.04-onbuild/Dockerfile b/ubuntu12.04-onbuild/Dockerfile deleted file mode 100644 index 3816c24..0000000 --- a/ubuntu12.04-onbuild/Dockerfile +++ /dev/null @@ -1,49 +0,0 @@ -# Dockerfile for building Ansible image for Ubuntu 12.04 (presice), with as few additional software as possible. -# -# @see https://launchpad.net/~ansible/+archive/ubuntu/ansible -# -# Version 1.0 -# - - -# pull base image -FROM ubuntu:12.04 - -MAINTAINER William Yeh - - -RUN echo "===> Adding Ansible's PPA..." && \ - echo "deb http://ppa.launchpad.net/ansible/ansible/ubuntu precise main" | tee /etc/apt/sources.list.d/ansible.list && \ - echo "deb-src http://ppa.launchpad.net/ansible/ansible/ubuntu precise main" | tee -a /etc/apt/sources.list.d/ansible.list && \ - apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 7BB9C367 && \ - DEBIAN_FRONTEND=noninteractive apt-get update && \ - \ - \ - echo "===> Installing Ansible (and sudo)..." && \ - apt-get install -y ansible sudo && \ - \ - \ - echo "===> Removing Ansible PPA..." && \ - rm -rf /var/lib/apt/lists/* /etc/apt/sources.list.d/ansible.list && \ - \ - \ - echo "===> Adding hosts for convenience..." && \ - echo 'localhost' > /etc/ansible/hosts - - -COPY ansible-playbook-wrapper /usr/local/bin/ - -ONBUILD RUN DEBIAN_FRONTEND=noninteractive apt-get update && \ - echo "===> Updating TLS certificates..." && \ - apt-get install -y openssl ca-certificates - -ONBUILD WORKDIR /tmp -ONBUILD COPY . /tmp -ONBUILD RUN \ - echo "===> Diagnosis: host information..." && \ - ansible -c local -m setup all - - - -# default command: display Ansible version -CMD [ "ansible-playbook", "--version" ] -- cgit v1.2.3