Bug: Re-downloads maven after each restart
Closed this issue · 2 comments
holyjak commented
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
holyjak commented
For anybody interested, this was my workaround:
if $::maven_version == undef { # Avoid re-downloading when installed
class { 'maven::maven': version => '3.1.0' }
}