~ibmcharmers/charms/trusty/ibm-platform-rtm/trunk

« back to all changes in this revision

Viewing changes to config.yaml

  • Committer: Rajith Venkata
  • Date: 2016-11-07 06:05:21 UTC
  • Revision ID: rajith.pv@in.ibm.com-20161107060521-mg8lboa670ue0jxp
Changes made after review

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
"options":
2
 
  "curl_url":
3
 
    "type": "string"
4
 
    "default": ""
5
 
    "description": |
6
 
      Location of the IBM product installation file(s). This should be a URL
7
 
      that curl can use to download files. Multiple URLs should be separated
8
 
      by a space. NOTE: cryptographic verification is required and must be
9
 
      specified as part of the URL query string with the key a valid hash
10
 
      algorithms md5, sha256, or sha512, and the the checksum value itself
11
 
      (http://<url>?[md5|sha256|sha512]=<checksum>).
12
 
      For example:
13
 
        'http://example.com/file.tgz?sha256=<sum>'
14
 
        'sftp://example.com/file1.tgz?md5=<sum> ftp://example.com/file2.tgz?md5=<sum>'
15
 
  "curl_opts":
16
 
    "type": "string"
17
 
    "default": ""
18
 
    "description": |
19
 
      The options passed to the 'curl' command when fetching files from
20
 
      curl_url. For example:
21
 
        '-u <user:password>'
22
 
  "license_accepted":
23
 
    "type": "boolean"
24
 
    "default": !!bool "false"
25
 
    "description": |
26
 
      Some IBM charms require acceptance of a license before installation
27
 
      can proceed. If required, setting this option to True indicates that you
28
 
      have read and accepted the IBM terms and conditions found in the license
29
 
      file referenced by the charm.
30
 
  "extra_packages":
31
 
    "description": "Space separated list of extra deb packages to install.\n"
32
 
    "type": "string"
33
 
    "default": ""
34
 
  "package_status":
35
 
    "default": "install"
36
 
    "type": "string"
37
 
    "description": "The status of service-affecting packages will be set to this value\
38
 
      \ in the dpkg database. Valid values are \"install\" and \"hold\".\n"
39
 
  "install_sources":
40
 
    "description": "List of extra apt sources, per charm-helpers standard format (a\
41
 
      \ yaml list of strings encoded as a string). Each source may be either a line\
42
 
      \ that can be added directly to sources.list(5), or in the form ppa:<user>/<ppa-name>\
43
 
      \ for adding Personal Package Archives, or a distribution component to enable.\n"
44
 
    "type": "string"
45
 
    "default": ""
46
 
  "install_keys":
47
 
    "description": "List of signing keys for install_sources package sources, per\
48
 
      \ charmhelpers standard format (a yaml list of strings encoded as a string).\
49
 
      \ The keys should be the full ASCII armoured GPG public keys. While GPG key\
50
 
      \ ids are also supported and looked up on a keyserver, operators should be aware\
51
 
      \ that this mechanism is insecure. null can be used if a standard package signing\
52
 
      \ key is used that will already be installed on the machine, and for PPA sources\
53
 
      \ where the package signing key is securely retrieved from Launchpad.\n"
54
 
    "type": "string"
55
 
    "default": ""
56
 
  "accept-ibm-prtm-license":
57
 
    "type": "boolean"
58
 
    "default": !!bool "false"
59
 
    "description": "The IBM Platform RTM software can only be used by\naccepting the\
60
 
      \ terms and conditions for IBM Platform RTM License.\nSetting this option to\
61
 
      \ True\nindicates that you have read and accepted the IBM Platform RTM terms\
62
 
      \ and\nconditions found in the license file. The details about accessing\nthe\
63
 
      \ license(s) can be found in the README.  \n"
64
 
  "prtm_datapoller_pkg_sha":
65
 
    "type": "string"
66
 
    "default": ""
67
 
    "description": "Checksum value to check integrity of IBM Platform RTM datapoller\
68
 
      \ package. The Charm uses \nsha1sum to check the integrity. If empty, it does\
69
 
      \ not carry out the \nintegrity check.The command to find the checksum is\n\
70
 
      sha1sum <Package Name> | cut -d\" \" -f1\n"
71
 
  "prtm_server_pkg_sha":
72
 
    "type": "string"
73
 
    "default": ""
74
 
    "description": |
75
 
      Checksum value to check integrity of IBM Platform RTM server package. The Charm uses
76
 
      sha1sum to check the integrity. If empty, it does not carry out the
77
 
      integrity check.The command to find the checksum is
78
 
      sha1sum <Package Name> | cut -d" " -f1