24 lines
507 B
YAML
24 lines
507 B
YAML
|
---
|
||
|
- hosts: localhost
|
||
|
roles:
|
||
|
- role: standard-test-source
|
||
|
tags:
|
||
|
- always
|
||
|
|
||
|
- role: standard-test-basic
|
||
|
tags:
|
||
|
- classic
|
||
|
|
||
|
required_packages: # Install test dependencies
|
||
|
- fcoe-utils
|
||
|
|
||
|
tests:
|
||
|
- start-fcoe:
|
||
|
run: "systemctl start fcoe.service"
|
||
|
- stop-fcoe:
|
||
|
run: "systemctl stop fcoe.service"
|
||
|
- restart-fcoe:
|
||
|
run: "systemctl restart fcoe.service"
|
||
|
- check_status:
|
||
|
run: "systemctl status fcoe.service"
|