Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 656 Bytes

is_service_running.md

File metadata and controls

28 lines (22 loc) · 656 Bytes

is_service_running

Overview

Checks if a specified service is running. Can be a service within a docker.

Examples

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

    duthost.is_service_running("syncd", {docker_name})

Arguments

  • service_name - name of service
    • Required: True
    • Type: String
  • docker_name - name of docker service is a member of
    • Required: True
    • Type: String

Expected Output

True if service is running, False otherwise.