Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 573 Bytes

critical_services_status.md

File metadata and controls

25 lines (18 loc) · 573 Bytes

critical_servies_status

Overview

Checks status for cirtical services.

Examples

def test_fun(duthosts, rand_one_dut_hostname):
    duthost = duthosts[rand_one_dut_hostname]

    service_statuses = duthost.critical_services_status()

Arguments

Takes no arguments.

Expected Output

Returns dictionary mapping service name to whether that service is started.

  • {SERVICE_NAME} - True if service specified is started, False otherwise.