Version information
released May 7th 2015
This version is compatible with:
- , ,
This module has been deprecated by its author since Jun 3rd 2024.
The author has suggested puppet-icingaweb2 as its replacement.
Start using this module
Documentation
icinga/icingaweb2 — version 1.0.3 May 7th 2015
Puppet icingaweb2
Requirements
Debian and derivatives only:
- Puppetlabs apt module or
- Camptocamp apt module
Example usage
Install IcingaWeb2
node /box/ {
include icingaweb2
}
Install method: packages
node /box/ {
class { 'icingaweb2':
install_method => 'package',
}
}
Install method: Git
node /box/ {
class { 'icingaweb2':
install_method => 'git',
}
}
Manage repository
node /box/ {
class { 'icingaweb2':
manage_repo => true,
install_method => 'package',
}
}
Business process module
node /box/ {
class {
'icingaweb2':;
'icingaweb2::mod::businessprocess':;
}
}
Deployment module
node /box/ {
class {
'icingaweb2':;
'icingaweb2::mod::deployment':
auth_token => 'secret_token';
}
}
Graphite module
node /box/ {
class {
'icingaweb2':;
'icingaweb2::mod::graphite':
graphite_base_url => 'http://graphite.com/render?';
}
}
NagVis module
node /box/ {
class {
'icingaweb2':;
'icingaweb2::mod::nagvis':
nagvis_url => 'http://example.org/nagvis/';
}
}
Contributing
- Fork it
- Create a feature branch (
git checkout -b my-new-feature
) - Run rspec tests (
bundle exec rake spec
) - Commit your changes (
git commit -am 'Added some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request
Dependencies
- puppetlabs/apache (>= 1.2.0)
- puppetlabs/concat (>= 1.2.0)
- puppetlabs/inifile (>= 1.2.0)
- puppetlabs/stdlib (>= 4.4.0)
- puppetlabs/vcsrepo (>= 1.2.0)
Copyright (C) 2012 Tom De Vylder Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.