Puppet Class: idea
- Defined in:
- manifests/init.pp
Overview
Class: idea
Install IntelliJ IDEA from the official vendor site. The required Java runtime environment will not be installed automatically.
Parameters
- version
-
Specify the version of IntelliJ IDEA which should be installed.
- url
-
Specify the absolute URL of the IntelliJ IDEA tarball. This overrides any version which has been set before.
- build
-
Specify the build number of IntelliJ IDEA inside the tarball. You have to specify this for every new version of IntelliJ IDEA since it doesn’t match the version number or anything else which could be automatically set.
- target
-
Specify the location of the symlink to the IntelliJ IDEA installation on the local filesystem.
- timeout
-
Download timeout passed to archive module.
Variables
The variables being used by this module are named exactly like the class parameters with the prefix ‘idea_’, e. g. idea_version and idea_url.
Examples
class { 'idea':
version => '12.1.3',
build => '129.451',
}
Authors
Jochen Schalanda <j.schalanda@smarchive.de>
Copyright
Copyright 2012, 2013 smarchive GmbH
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 |
# File 'manifests/init.pp', line 47
class idea(
$version = 'UNSET',
$url = 'UNSET',
$build = 'UNSET',
$target = 'UNSET',
$timeout = 'UNSET',
) {
class { 'idea::community':
version => $version,
url => $url,
build => $build,
target => $target,
timeout => $timeout,
}
}
|