Skip to content
This repository has been archived by the owner on Dec 13, 2022. It is now read-only.

Commit

Permalink
Merge branch '2.8.x' into FeatureServiceConfiguration
Browse files Browse the repository at this point in the history
  • Loading branch information
loiclau committed Aug 7, 2017
2 parents 7621465 + c766d13 commit 45d979d
Show file tree
Hide file tree
Showing 18 changed files with 536 additions and 21 deletions.
5 changes: 5 additions & 0 deletions behat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -268,3 +268,8 @@ default:
paths: [ %paths.base%/features/ServiceConfiguration.feature ]
contexts:
- ServiceConfigurationContext

host_group_service_configuration:
paths: [ %paths.base%/features/HostGroupServiceConfiguration.feature ]
contexts:
- HostGroupServiceConfigurationContext
2 changes: 0 additions & 2 deletions doc/en/api/clapi/objects/hosts.rst
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,6 @@ check_freshness Enables check freshness

check_period Check period

checks_enabled Whether or not checks are enabled

contact_additive_inheritance Enables contact additive inheritance

cg_additive_inheritance Enables contactgroup additive inheritance
Expand Down
4 changes: 0 additions & 4 deletions doc/en/api/clapi/objects/services.rst
Original file line number Diff line number Diff line change
Expand Up @@ -171,8 +171,6 @@ first_notification_delay First notification delay in seconds

recovery_notification_delay Recovery notification delay

parallelize_checks *1* when parallelize checks are enabled, *0* otherwise

obsess_over_service *1* when obsess over service is enabled, *0* otherwise

check_freshness *1* when check freshness is enabled, *0* otherwise
Expand All @@ -183,8 +181,6 @@ event_handler_enabled *1* when event handler is enabled, *0* otherwise

flap_detection_enabled *1* when flap detection is enabled, *0* otherwise

process_perf_data *1* when process performance data is enabled, *0* otherwise

retain_status_information *1* when status information is retained, *0* otherwise

retain_nonstatus_information *1* when non status information is retained, *0* otherwise
Expand Down
23 changes: 23 additions & 0 deletions doc/en/release_notes/centreon-2.7/centreon-2.7.12.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
###############
Centreon 2.7.12
###############

The 2.7.12 release for Centreon Web is now available for `download <https://download.centreon.com>`_.
The full release notes for 2.7.12 follow.

******
Notice
******

If you are upgrading from a version prior to 2.7.0, make sure to go through all the release notes available
`here <http://documentation.centreon.com/docs/centreon/en/latest/release_notes/index.html>`_.

Bug Fixes
=========

* [CLAPI] Several bugs on HG / CG when export is filtered #5297 PR #5320
* [CLAPI] fix clapi ldap contact import
* Unable to load public custom view - No Layout... #5449
* Impossible to acknowledge several object from custom views #5420
* Security: avoid external command shell injection in comment

2 changes: 2 additions & 0 deletions doc/en/release_notes/centreon-2.7/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,5 @@ Please find here the release notes dedicated to the last 2.7.x version of Centre
centreon-2.7.8
centreon-2.7.9
centreon-2.7.10
centreon-2.7.11
centreon-2.7.12
2 changes: 0 additions & 2 deletions doc/fr/api/clapi/objects/hosts.rst
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,6 @@ check_freshness Enables check freshness

check_period Check period

checks_enabled Whether or not checks are enabled

contact_additive_inheritance Enables contact additive inheritance

cg_additive_inheritance Enables contactgroup additive inheritance
Expand Down
4 changes: 0 additions & 4 deletions doc/fr/api/clapi/objects/services.rst
Original file line number Diff line number Diff line change
Expand Up @@ -169,8 +169,6 @@ notification_options Status linked to notifications

first_notification_delay First notification delay in seconds

parallelize_checks *1* when parallelize checks are enabled, *0* otherwise

obsess_over_service *1* when obsess over service is enabled, *0* otherwise

check_freshness *1* when check freshness is enabled, *0* otherwise
Expand All @@ -181,8 +179,6 @@ event_handler_enabled *1* when event handler is enabled, *0* otherwise

flap_detection_enabled *1* when flap detection is enabled, *0* otherwise

process_perf_data *1* when process performance data is enabled, *0* otherwise

retain_status_information *1* when status information is retained, *0* otherwise

retain_nonstatus_information *1* when non status information is retained, *0* otherwise
Expand Down
23 changes: 23 additions & 0 deletions doc/fr/release_notes/centreon-2.7/centreon-2.7.12.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
###############
Centreon 2.7.12
###############

The 2.7.12 release for Centreon Web is now available for `download <https://download.centreon.com>`_.
The full release notes for 2.7.12 follow.

******
Notice
******

If you are upgrading from a version prior to 2.7.0, make sure to go through all the release notes available
`here <http://documentation.centreon.com/docs/centreon/en/latest/release_notes/index.html>`_.

Bug Fixes
=========

* [CLAPI] Several bugs on HG / CG when export is filtered #5297 PR #5320
* [CLAPI] fix clapi ldap contact import
* Unable to load public custom view - No Layout... #5449
* Impossible to acknowledge several object from custom views #5420
* Security: avoid external command shell injection in comment

2 changes: 2 additions & 0 deletions doc/fr/release_notes/centreon-2.7/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,5 @@ Please find here the release notes dedicated to the last 2.7.x version of Centre
centreon-2.7.8
centreon-2.7.9
centreon-2.7.10
centreon-2.7.11
centreon-2.7.12
20 changes: 20 additions & 0 deletions features/HostGroupServiceConfiguration.feature
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
Feature: Edit a host group service
As a Centreon user
I want to manipulate a service
To see if all simples manipulations work

Background:
Given I am logged in a Centreon server
And a service is configured

Scenario: Change the properties of a host group service
When I change the properties of a host group service
Then the properties are updated

Scenario: Duplicate one existing host group service
When I duplicate a host group service
Then the new host group service has the same properties

Scenario: Delete one existing host group service
When I delete a host group service
Then the deleted host group service is not displayed in the list
4 changes: 1 addition & 3 deletions features/bootstrap/ACLActionsAccessContext.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,7 @@ class ACLActionsAccessContext extends CentreonContext
private $adminContactGroup = array(
'name' => 'adminContactGroupName',
'alias' => 'adminContactGroupAlias',
'contacts' => array(
'adminUserName'
),
'contacts' => 'adminUserName'
);

private $nonAdminUser = array(
Expand Down
Loading

0 comments on commit 45d979d

Please sign in to comment.