forked from larsyencken/marelle-deps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaws.pl
51 lines (43 loc) · 1.4 KB
/
aws.pl
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
%
% aws.pl
% computer-deps
%
% Tools for working with AWS.
%
meta_pkg('aws-recommended', [
s3cmd,
boto,
'elastic-mapreduce'
]).
managed_pkg(s3cmd).
pip_pkg(boto).
command_pkg('elastic-mapreduce').
meet('elastic-mapreduce', _).
depends('elastic-mapreduce', _, [
'__emr shim'
]).
pkg('elastic-mapreduce-configured').
met('elastic-mapreduce-configured', _) :-
isfile('~/.local/elastic-mapreduce/credentials.json').
meet('elastic-mapreduce-configured', _) :-
bash('ln -s ~/.aws/current/credentials.json ~/.local/elastic-mapreduce/credentials.json').
depends('elastic-mapreduce-configured', _, [
'elastic-mapreduce'
]).
pkg('__emr client').
met('__emr client', _) :- isdir('~/.local/elastic-mapreduce').
meet('__emr client', _) :-
bash('mkdir -p ~/.local/bin && cd ~/.local && wget "http://elasticmapreduce.s3.amazonaws.com/elastic-mapreduce-ruby.zip" && unzip -d elastic-mapreduce elastic-mapreduce-ruby.zip && rm elastic-mapreduce-ruby.zip').
depends('__emr client', _, [ruby, unzip]).
pkg('__emr shim').
met('__emr shim', _) :- isfile('~/.local/bin/elastic-mapreduce').
meet('__emr shim', _) :-
expand_path('~/.local/bin/elastic-mapreduce', F),
tell(F),
writeln('#!/bin/bash'),
writeln('/usr/bin/ruby ~/.local/elastic-mapreduce/elastic-mapreduce "$@"'),
told,
make_executable(F).
depends('__emr shim', _, ['__emr client']).
command_pkg(unzip).
installs_with_apt(unzip).