Skip to content

Commit

Permalink
Merge branch 'master' into feature/localization-form-6073
Browse files Browse the repository at this point in the history
Conflicts:
	application/forms/Config/GeneralForm.php
	application/forms/Preference/GeneralForm.php
	library/Icinga/Application/Web.php
  • Loading branch information
Alexander Fuhr committed Nov 5, 2014
2 parents 77bb64b + f659526 commit 2e24c53
Show file tree
Hide file tree
Showing 770 changed files with 27,657 additions and 30,183 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.git* export-ignore
9 changes: 6 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
!.gitkeep

build/
test/js/npm-debug.log

development/

# ./configure output
config.log
Expand All @@ -20,10 +21,9 @@ config.status
Makefile

# cmd tester
test/php/bin/extcmd_test
modules/test/bin/extcmd_test

# misc test output
test/frontend/static/public
test/php/library/Icinga/Protocol/Statusdat/.cache

# Generated API documentation
Expand All @@ -38,6 +38,9 @@ config/preferences/*.ini
# Application logfiles
var/log/*.log

# Packaging
/debian
*.tar.gz
*.komodoproject


18 changes: 9 additions & 9 deletions .vagrant-puppet/files/etc/icinga2/conf.d/test-config.conf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
object CheckCommand "dummy-host" {
import "plugin-check-command"
command = [ PluginDir + "/libexec/test_hostcheck.pl" ]
command = [ PluginDir + "/test_hostcheck.pl" ]
arguments = {
"--type" = "$check_type$"
"--failchance" = "$check_failchance$"
Expand All @@ -18,7 +18,7 @@ object CheckCommand "dummy-host" {

object CheckCommand "dummy-service" {
import "plugin-check-command"
command = [ PluginDir + "/libexec/test_servicecheck.pl" ]
command = [ PluginDir + "/test_servicecheck.pl" ]
arguments = {
"--total-critical-on-host" = "$check_critical_on_host$"
"--total-warning-on-host" = "$check_warning_on_host$"
Expand Down Expand Up @@ -76,7 +76,7 @@ __function createService(service_type, num) {
enable_active_checks = (service_type != "pending")
vars.check_type = service_type

assign where match("*" + service_type + "*", host.vars.check_config)
assign where service_type in host.vars.check_config
}
}

Expand All @@ -102,12 +102,12 @@ __function createHost(checkType, checkConfig, num, checkEnabled) {
}

__for (num in range(10)) {
createHost("ok", "ok", num, true)
createHost("random", "random,flapping", num, true)
createHost("down", "warning,critical", num, true)
createHost("unreachable", "unknown", num, true)
createHost("pending", "pending", num, false)
createHost("flap", "flapping", num, true)
createHost("ok", [ "ok" ], num, true)
createHost("random", [ "random", "flapping" ], num, true)
createHost("down", [ "warning", "critical" ], num, true)
createHost("unreachable", [ "unknown" ], num, true)
createHost("pending", [ "pending" ], num, false)
createHost("flap", [ "flapping" ], num, true)
}

// EOF
35 changes: 0 additions & 35 deletions .vagrant-puppet/files/etc/icingaweb/dashboard/dashboard.ini

This file was deleted.

25 changes: 0 additions & 25 deletions .vagrant-puppet/files/etc/icingaweb/menu.ini

This file was deleted.

100 changes: 0 additions & 100 deletions .vagrant-puppet/files/etc/icingaweb/modules/monitoring/menu.ini

This file was deleted.

2 changes: 2 additions & 0 deletions .vagrant-puppet/files/var/www/html/icingaweb/index.php
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
<?php
// {{{ICINGA_LICENSE_HEADER}}}
// {{{ICINGA_LICENSE_HEADER}}}

include '/vagrant/library/Icinga/Application/webrouter.php';
Loading

0 comments on commit 2e24c53

Please sign in to comment.