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 --- 1.9-centos6-onbuild/Dockerfile | 59 ---------------------------- 1.9-centos6-onbuild/ansible-playbook-wrapper | 50 ----------------------- 2 files changed, 109 deletions(-) delete mode 100644 1.9-centos6-onbuild/Dockerfile delete mode 100755 1.9-centos6-onbuild/ansible-playbook-wrapper (limited to '1.9-centos6-onbuild') diff --git a/1.9-centos6-onbuild/Dockerfile b/1.9-centos6-onbuild/Dockerfile deleted file mode 100644 index 01678b4..0000000 --- a/1.9-centos6-onbuild/Dockerfile +++ /dev/null @@ -1,59 +0,0 @@ -# Dockerfile for building Ansible 1.9 image for CentOS 6, with as few additional software as possible. -# -# @see https://www.reddit.com/r/ansible/comments/46jrxc/release_20_in_epel/ -# @see https://bodhi.fedoraproject.org/updates/?packages=ansible -# @see http://docs.ansible.com/intro_installation.html#latest-release-via-yum -# -# [NOTE] To fix the "sudo: sorry, you must have a tty to run sudo" issue, -# we need to patch /etc/sudoers. -# @see http://unix.stackexchange.com/questions/122616/why-do-i-need-a-tty-to-run-sudo-if-i-can-sudo-without-a-password -# @see https://bugzilla.redhat.com/show_bug.cgi?id=1020147 -# -# Version 1.0 -# - - -# pull base image -FROM centos:centos6 - -MAINTAINER William Yeh - - -RUN echo "===> Installing EPEL..." && \ - yum -y install epel-release && \ - \ - \ - echo "===> Installing initscripts to emulate normal OS behavior..." && \ - yum -y install initscripts sudo && \ - \ - \ - echo "===> Installing Ansible..." && \ - yum -y --enablerepo=epel-testing install ansible1.9 && \ - \ - \ - echo "===> Disabling sudo 'requiretty' setting..." && \ - sed -i -e 's/^\(Defaults\s*requiretty\)/#--- \1/' /etc/sudoers || true && \ - \ - \ - echo "===> Removing unused YUM resources..." && \ - yum -y remove epel-release && \ - yum clean all && \ - \ - \ - echo "===> Adding hosts for convenience..." && \ - mkdir -p /etc/ansible && \ - echo 'localhost' > /etc/ansible/hosts - - -COPY ansible-playbook-wrapper /usr/local/bin/ - -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" ] diff --git a/1.9-centos6-onbuild/ansible-playbook-wrapper b/1.9-centos6-onbuild/ansible-playbook-wrapper deleted file mode 100755 index dcc6723..0000000 --- a/1.9-centos6-onbuild/ansible-playbook-wrapper +++ /dev/null @@ -1,50 +0,0 @@ -#!/bin/sh -# -# Simple wrapper for executing ansible-galaxy and ansible-playbook -# with local connection. -# -# USAGE: -# ansible-playbook-wrapper [other ansible-playbook arguments] -# -# ENVIRONMENT VARIABLES: -# -# - REQUIREMENTS: requirements filename; default = "requirements.yml" -# - PLAYBOOK: playbook filename; default = "playbook.yml" -# - INVENTORY: inventory filename; default = "/etc/ansible/hosts" -# - - -# -# install Galaxy roles, if any -# - -if [ -z "$REQUIREMENTS" ]; then - REQUIREMENTS=requirements.yml -fi - -if [ -f "$REQUIREMENTS" ]; then - yum -y install git - ansible-galaxy install -r $REQUIREMENTS -fi - - -# -# execute playbook -# - -if [ -z "$PLAYBOOK" ]; then - PLAYBOOK=playbook.yml -fi - - -if [ -z "$INVENTORY" ]; then - exec ansible-playbook \ - $PLAYBOOK \ - --connection=local \ - "$@" -else - exec ansible-playbook \ - -i $INVENTORY $PLAYBOOK \ - --connection=local \ - "$@" -fi -- cgit v1.2.3