No description
Find a file
2015-02-20 12:53:54 +01:00
manifests Create $web_root directory 2015-02-20 12:53:54 +01:00
spec Create $web_root directory 2015-02-20 12:53:54 +01:00
templates Add config templates 2015-02-20 10:41:52 +01:00
.fixtures.yml Initial commit 2015-02-20 10:40:45 +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 Initial commit 2015-02-20 10:40:45 +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,
  }
}

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