Puppet Class: android
- Inherits:
- android::params
- Defined in:
- manifests/init.pp
Overview
Class: android
This class is used to install the android SDK and platform tools
Parameters:
- version
-
the SDK version
- user
-
used to set the file ownership of the installed SDK
- group
-
used to set the file ownership of the installed SDK
- installdir
-
the install directory.
- proxy_host
-
the proxy server host name (used by the android tool)
- proxy_port
-
the proxy server port (used by the android tool)
Authors
Etienne Pelletier <epelletier@maestrodev.com>
Copyright
Copyright 2012 MaestroDev, unless otherwise noted.
22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
# File 'manifests/init.pp', line 22
class android(
$version = $android::params::version,
$user = $android::params::user,
$group = $android::params::group,
$installdir = $android::params::installdir,
$proxy_host = $android::params::proxy_host,
$proxy_port = $android::params::proxy_port) inherits android::params {
anchor { 'android::begin': } ->
class { 'android::paths': } ->
class { 'android::sdk': } ->
class { 'android::platform_tools': } ->
anchor { 'android::end': }
}
|