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 2012 MaestroDev, unless otherwise noted.

Parameters:

  • version (Any) (defaults to: $android::params::version)
  • user (Any) (defaults to: $android::params::user)
  • group (Any) (defaults to: $android::params::group)
  • installdir (Any) (defaults to: $android::params::installdir)
  • proxy_host (Any) (defaults to: $android::params::proxy_host)
  • proxy_port (Any) (defaults to: $android::params::proxy_port)


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': }
}