-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathnode.js.pb
29 lines (29 loc) · 913 Bytes
/
node.js.pb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
---
- hosts: all
gather_facts: false
vars:
TYPE: node
INSTANCE: ${version}
DIR_BYPASS: True
version: v0.10.2
base: node-${version}-linux-x64
tarfile: ${base}.tar.gz
urlfile: ${tarfile}.url
repo: http://nodejs.org/dist/${version}/${tarfile}
linkdir: ${SRCS_DIR}/node
binaries:
- npm
- node
vars_files:
- vars/common.vars
- vars/src.vars
tasks:
- include: tasks/cfvar_includes.tasks
- include: tasks/template.tasks src=files/trivial dest=$SRCS_DIR/$urlfile content=$repo
#- lineinfile: dest=$SRCS_DIR/$urlfile regexp='^http' line=$repo create=yes
- get_url: url=$repo dest=$SRCS_DIR/$tarfile
- shell: chdir=$SRCS_DIR tar -xzf $tarfile
- file: src=$SRCS_DIR/$base dest=$linkdir-$version state=link
- file: src=$SRCS_DIR/$base dest=$linkdir state=link
- file: src=$linkdir/bin/$item dest=$BINS_DIR/$item state=link
with_items: $binaries