Skip to content

Commit

Permalink
Skip checking the imunify360 service in the integration test
Browse files Browse the repository at this point in the history
The 'imunify360' service does not report that it is running even if it
is up and running so we are skipping this service check for now.

Changelog:
  • Loading branch information
Travis Holloway committed Nov 19, 2024
1 parent bcc34a7 commit 53c28c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion t/integration/complete.t
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ note "Gather service status...";
my $svcstatus = run_api(qw{whmapi1 servicestatus});
if ( ref $svcstatus->{'data'}{'service'} eq 'ARRAY' ) {
foreach my $svc_info ( $svcstatus->{'data'}{'service'}->@* ) {
next if !$svc_info->{'enabled'} || $svc_info->{'name'} eq 'mailman' || $svc_info->{'name'} eq 'tailwatchd';
next if !$svc_info->{'enabled'} || $svc_info->{'name'} eq 'mailman' || $svc_info->{'name'} eq 'tailwatchd' || $svc_info->{'name'} eq 'imunify360';
ok( $svc_info->{'running'}, "$svc_info->{'name'} is running" );
}
}
Expand Down

0 comments on commit 53c28c5

Please sign in to comment.