blob: fa554ce3ce1745a97c6294c1dc3ae42e404d6947 (
plain)
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
|
---
- name: copy bashrc
copy: src=bashrc dest=/home/vagrant/.bashrc mode=0644
- cpanm: name=Devel::REPL notest=true locallib=/home/vagrant/perl executable=/usr/local/bin/cpanm
- cpanm: name=Term::ReadLine::Gnu notest=true locallib=/home/vagrant/perl executable=/usr/local/bin/cpanm
- cpanm: name=PPI notest=true locallib=/home/vagrant/perl executable=/usr/local/bin/cpanm
- cpanm: name=Data::Dumper::Concise notest=true locallib=/home/vagrant/perl executable=/usr/local/bin/cpanm
- cpanm: name=File::Next notest=true locallib=/home/vagrant/perl executable=/usr/local/bin/cpanm
- cpanm: name=Sys::SigAction notest=true locallib=/home/vagrant/perl executable=/usr/local/bin/cpanm
- cpanm: name=Lexical::Persistence notest=true locallib=/home/vagrant/perl executable=/usr/local/bin/cpanm
- cpanm: name=Data::Printer notest=true locallib=/home/vagrant/perl executable=/usr/local/bin/cpanm
- cpanm: name=Devel::REPL::Plugin::ReadLineHistory::WithoutExpansion notest=true locallib=/home/vagrant/perl executable=/usr/local/bin/cpanm
- name: fix ownership of repl stuff
file: path=/home/vagrant/perl owner=vagrant group=vagrant recurse=true
- name: copy re.pl
copy: src=re.pl dest=/usr/local/bin/re.pl mode=0755
- name: mkdir .re.pl
file: path=/home/vagrant/.re.pl state=directory owner=vagrant group=vagrant mode=0775
- name: copy .re.pl/repl.rc
copy: src=repl.rc dest=/home/vagrant/.re.pl/repl.rc mode=0644
|