maestrodev/puppet-maven

Bug: Re-downloads maven after each restart

Closed this issue · 2 comments

According to my experience, the maven::maven class downloads maven again when the server is restarted even though it is already installed. This is due to storing the donwloaded archive into /tmp/ (which is wiped upon shutdown).

Possible solutions:

  • Either check whether /opt/apache-maven-${version}/bin/mvn exists and if it does, do not do anything (checking for the presence of the maven_version fact should do it)
  • Or download it to another place than /opt

For anybody interested, this was my workaround:

  if $::maven_version == undef { # Avoid re-downloading when installed
    class { 'maven::maven': version => '3.1.0' }
  }

Fixed in 7fb5c12