24 lines
568 B
YAML
24 lines
568 B
YAML
|
---
|
||
|
# Tests that run in classic context
|
||
|
- hosts: localhost
|
||
|
roles:
|
||
|
- role: standard-test-beakerlib
|
||
|
tags:
|
||
|
- classic
|
||
|
tests:
|
||
|
- definig-the-set-of-files-to-transfer
|
||
|
- setting-group-acls
|
||
|
required_packages:
|
||
|
- rsync # all tests require rsync
|
||
|
- rsync-daemon # definig-the-set-of-files-to-transfer requires rsync-daemon
|
||
|
- acl # setting-group-acls requires acl
|
||
|
|
||
|
# Tests that run against Atomic Host
|
||
|
- hosts: localhost
|
||
|
roles:
|
||
|
- role: standard-test-beakerlib
|
||
|
tags:
|
||
|
- atomic
|
||
|
tests:
|
||
|
- setting-group-acls
|