Represents a condition AND. Should be used right after @ block.
@ Installing nginx
when not which nginx
- yum_install nginx
('when' is an alias for 'and when')
With multiple conditions:
@ Probably on linux system
when test -d /sys
and test -d /dev
and test -d /proc
- do foo
- do bar
You can write 'and when test...' or just 'and test...'