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/ansible-playbook-wrapper | 50 ---------------------------- 1 file changed, 50 deletions(-) delete mode 100755 ubuntu12.04-onbuild/ansible-playbook-wrapper (limited to 'ubuntu12.04-onbuild/ansible-playbook-wrapper') diff --git a/ubuntu12.04-onbuild/ansible-playbook-wrapper b/ubuntu12.04-onbuild/ansible-playbook-wrapper deleted file mode 100755 index afe4d97..0000000 --- a/ubuntu12.04-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 - apt-get install -y 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