Repository: bigtop Updated Branches: refs/heads/master f08ec62cb -> 56eaefb7a
BIGTOP-1313. Ant 1.9.4 update is missed from ant.pp recipe. Project: http://git-wip-us.apache.org/repos/asf/bigtop/repo Commit: http://git-wip-us.apache.org/repos/asf/bigtop/commit/56eaefb7 Tree: http://git-wip-us.apache.org/repos/asf/bigtop/tree/56eaefb7 Diff: http://git-wip-us.apache.org/repos/asf/bigtop/diff/56eaefb7 Branch: refs/heads/master Commit: 56eaefb7a86600552e4e64ae51b399e510bf2073 Parents: f08ec62 Author: Konstantin Boudnik <[email protected]> Authored: Sun Jun 1 11:59:36 2014 -0700 Committer: Konstantin Boudnik <[email protected]> Committed: Sun Jun 1 11:59:36 2014 -0700 ---------------------------------------------------------------------- bigtop_toolchain/README.md | 2 +- bigtop_toolchain/manifests/ant.pp | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/bigtop/blob/56eaefb7/bigtop_toolchain/README.md ---------------------------------------------------------------------- diff --git a/bigtop_toolchain/README.md b/bigtop_toolchain/README.md index 02e08a8..40130c4 100644 --- a/bigtop_toolchain/README.md +++ b/bigtop_toolchain/README.md @@ -20,7 +20,7 @@ bigtop-toolchain Puppet module for configuring a CentOS host for building BigTop. It installs: -**Apache Ant 1.9.2** +**Apache Ant 1.9.4** **Apache Forrest 0.9** http://git-wip-us.apache.org/repos/asf/bigtop/blob/56eaefb7/bigtop_toolchain/manifests/ant.pp ---------------------------------------------------------------------- diff --git a/bigtop_toolchain/manifests/ant.pp b/bigtop_toolchain/manifests/ant.pp index 2a268f1..347d0e0 100644 --- a/bigtop_toolchain/manifests/ant.pp +++ b/bigtop_toolchain/manifests/ant.pp @@ -17,16 +17,16 @@ class bigtop_toolchain::ant { include bigtop_toolchain::deps - exec {'/bin/tar xvzf /usr/src/apache-ant-1.9.2-bin.tar.gz': + exec {'/bin/tar xvzf /usr/src/apache-ant-1.9.4-bin.tar.gz': cwd => '/usr/local', refreshonly => true, - subscribe => Exec["/usr/bin/wget http://mirrors.ibiblio.org/apache//ant/binaries/apache-ant-1.9.2-bin.tar.gz"], - require => Exec["/usr/bin/wget http://mirrors.ibiblio.org/apache//ant/binaries/apache-ant-1.9.2-bin.tar.gz"], + subscribe => Exec["/usr/bin/wget http://mirrors.ibiblio.org/apache//ant/binaries/apache-ant-1.9.4-bin.tar.gz"], + require => Exec["/usr/bin/wget http://mirrors.ibiblio.org/apache//ant/binaries/apache-ant-1.9.4-bin.tar.gz"], } file {'/usr/local/ant': ensure => link, - target => '/usr/local/apache-ant-1.9.2', - require => Exec['/bin/tar xvzf /usr/src/apache-ant-1.9.2-bin.tar.gz'], + target => '/usr/local/apache-ant-1.9.4', + require => Exec['/bin/tar xvzf /usr/src/apache-ant-1.9.4-bin.tar.gz'], } }
