diff options
author | Dylan William Hardison <dylan@hardison.net> | 2018-05-04 21:30:08 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-04 21:30:08 +0200 |
commit | ba53123f4d6f5d3911ca013eb6801e1a11c3fccd (patch) | |
tree | 3dc451f8c7359a18751adc1087ca558304c06f87 | |
parent | 39f6b6e1f5f602f31fa7cd844809a4a7d4e579d2 (diff) | |
download | bugzilla-ba53123f4d6f5d3911ca013eb6801e1a11c3fccd.tar.gz bugzilla-ba53123f4d6f5d3911ca013eb6801e1a11c3fccd.tar.xz |
no bug - add tct to dev environment
-rw-r--r-- | vagrant_support/playbook.yml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/vagrant_support/playbook.yml b/vagrant_support/playbook.yml index 5041cefcb..c067eab05 100644 --- a/vagrant_support/playbook.yml +++ b/vagrant_support/playbook.yml @@ -157,11 +157,19 @@ - ncurses-devel - readline-devel + - name: fetch tct + unarchive: + src: https://github.com/dylanwh/tocotrienol/releases/download/1.0.6/tct-centos6.tar.xz + dest: /usr/local/bin + remote_src: yes + mode: '0755' + - name: fetch cpanm get_url: url: http://cpanmin.us dest: /usr/local/bin/cpanm mode: '0755' + - name: install more recent Apache2::SizeLimit cpanm: name=Apache2::SizeLimit executable=/usr/local/bin/cpanm |