The Nagios module settings link presented on the status page of Drupal is wrong for the D7 version, because it has moved. It currently points to admin/settings/nagios and needs to point to admin/config/system/nagios.

Comments

greg.harvey’s picture

Status: Active » Fixed

Seems this was fixed a while ago...

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.

jackalope’s picture

Issue summary: View changes
Status: Closed (fixed) » Active

I don't believe that this has actually been fixed. I just installed Nagios 7.x-1.2 and the Drupal status report page has a link to the Nagios settings page at /admin/settings/nagios.

The relevant code from nagios.install:

function nagios_requirements($phase) {
  $requirements = array();

  if ($phase == 'runtime') {
    // Raise warning if Nagios Unique ID has not been set yet.
    if (variable_get('nagios_ua', '') == '') {
      $requirements['nagios'] = array(
        'title' => t('Nagios module'),
        'value' => t('Not configured'),
        'description' => t('Nagios module has not been configured yet. Please configure its settings from the <a href="@url">Nagios settings page</a>.', array('@url' => url('admin/settings/nagios'))),
        'severity' => REQUIREMENT_WARNING,
      );
    }
  }
greg.harvey’s picture

Status: Active » Closed (fixed)

Hi,

It's fixed in 7.x-dev and will be fixed with the next release.