Skip to content
This repository was archived by the owner on Jul 17, 2018. It is now read-only.

Commit cc1a2b1

Browse files
author
Darren Jones
authored
Merge pull request #212 from brybinary/add-ansible-package
Add ansible package
2 parents 5dbed4f + 309e298 commit cc1a2b1

File tree

4 files changed

+21
-1
lines changed

4 files changed

+21
-1
lines changed

config/blobs.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
ansible/ansible-v2.5.2.tar.gz:
2+
size: 10192927
3+
object_id: a449d0df-70e7-4843-4bb5-00396cb58357
4+
sha: 959523a9b1db5a34cb3c3f6d37137f5b8895a55d
15
cf-cli/cf-6.46.1.tgz:
26
size: 5910456
37
object_id: 4e1d0b05-5da2-41fd-4df8-f3c059c98240

jobs/jenkins-slave/spec

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
---
22
name: jenkins-slave
33

4-
packages:
4+
packages:
55
- oraclejdk
66
- swarm-client
77
- apache-maven
88
- git-client
9+
- ansible
910
- cf-cli
1011

1112
consumes:

packages/ansible/packaging

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
set -e
2+
3+
ANSIBLE_VERSION=v2.5.2
4+
mkdir -p ${BOSH_COMPILE_TARGET}/ansible
5+
cd ${BOSH_COMPILE_TARGET}/ansible
6+
7+
tar xvfz ansible-${ANSIBLE_VERSION}.tar.gz -C ${BOSH_COMPILE_TARGET}/ansible
8+
mv ${BOSH_COMPILE_TARGET}/ansible/ansible-${ANSIBLE_VERSION}/* ${BOSH_INSTALL_TARGET}

packages/ansible/spec

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
name: ansible
3+
4+
dependencies: []
5+
6+
files:
7+
- ansible/ansible-v2.5.2.tar.gz

0 commit comments

Comments
 (0)