Skip to content

Instantly share code, notes, and snippets.

View abhirathore2006's full-sized avatar

Abhimanyu Singh Rathore abhirathore2006

View GitHub Profile
@abhirathore2006
abhirathore2006 / README.md
Created November 18, 2016 20:07 — forked from trinitronx/README.md
A shell script to install latest Ansible via pip + dependencies

omnibus-ansible

Install latest Ansible via pip + dependencies via a shell script

This file is used to install ansible in test kitchen when you set in the kitchen.yaml file

require_ansible_omnibus: true

By default test kitchen will always download and use the latest version of this install file.

WARNING: AS SOON AS YOU MERGE CODE HERE IT IS INSTANTLY AVAILABLE TO EVERYONE DOING OMNIBUS KITCHEN ANSIBLE INSTALLS:

@abhirathore2006
abhirathore2006 / install_jenkins_plugin.sh
Created November 26, 2016 05:49 — forked from micw/install_jenkins_plugin.sh
Script to install one or more jenkins plugins including dependencies while jenkins is offline
#!/bin/bash
set -e
if [ $# -eq 0 ]; then
echo "USAGE: $0 plugin1 plugin2 ..."
exit 1
fi
plugin_dir=/var/lib/jenkins/plugins