No description
Find a file
2015-03-16 17:06:21 +01:00
manifests Allow to redefine template files for configs 2015-03-16 17:06:21 +01:00
spec Add RHEL/CentOS package repository management 2015-02-23 17:27:33 +01:00
templates convert deprecated # to ; 2015-03-16 17:04:33 +01:00
.fixtures.yml Fix rspec errors 2015-02-20 21:38:20 +01:00
.gitignore Initial commit 2015-02-20 10:40:45 +01:00
.puppet-lint.rc Initial commit 2015-02-20 10:40:45 +01:00
.travis.yml Initial commit 2015-02-20 10:40:45 +01:00
Gemfile Initial commit 2015-02-20 10:40:45 +01:00
LICENSE Initial commit 2015-02-20 10:40:45 +01:00
metadata.json Initial commit 2015-02-20 10:40:45 +01:00
Rakefile Add unit tests 2015-02-20 10:42:31 +01:00
README.md Add RHEL/CentOS package repository management 2015-02-23 17:27:33 +01:00

Puppet icingaweb2

Requirements

Debian and derivatives only:

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

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