Skip to content

Latest commit

 

History

History
25 lines (19 loc) · 597 Bytes

is_service_fully_started.md

File metadata and controls

25 lines (19 loc) · 597 Bytes

is_service_fully_started

Overview

Checks whether a service is fully started on the SONiC host.

Examples

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

    swss_started = duthost.is_service_fully_started("swss")

Arguments

  • service - Service that should be checked for started state
    • Required: True
    • Type: String

Expected Output

True if service exists and is fully started, False otherwise