~charmers/charms/trusty/nagios/trunk

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
options:
    extraconfig:
        type: string
        default: ""
        description: |
            Any additional nagios configuration you would like to
            add can be set into this element. It will be placed in
            /etc/nagios3/conf.d/extra.cfg
    ssl:
        type: string
        default: "off"
        description: |
            Enable SSL communication for Nagios. Possible values are
            "on", "off", or "only". The "only" option disables
            All HTTP communication in favor of HTTPS - may play havok with
            existing nagios deployments.
    ssl_cert:
        type: string
        default: None
        description: |
            base64 encoded server certificate.  If left blank, the certificate
            and key will be autogenerated as self-signed.
        default: ''
    ssl_key:
        type: string
        default: None
        description: |
            base64 encoded server certificate key.  If ssl_cert is
            blank, this is ignored.
        default: ''
    ssl_chain:
        type: string
        default: ''
        description: |
            base64 encoded chain certificates file.  If ssl_cert is
            blank, this will be ignored.