No description
Find a file
2015-04-07 14:22:56 +02:00
manifests Fix usage of wrong parameter for auth backend 2015-04-07 14:22:33 +02:00
spec Update spec for role fix 2015-04-07 14:22:22 +02:00
templates Moving away from templates to usign inifile from Puppetlabs/inifile 2015-04-02 08:45:16 -04:00
.fixtures.yml Use HTTPs links for fixtures 2015-04-07 14:22:56 +02: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 Moving away from templates to usign inifile from Puppetlabs/inifile 2015-04-02 08:45:16 -04: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