~canonical-ci-engineering/ubuntu-ci-services-itself/ansible

« back to all changes in this revision

Viewing changes to test/playbook-when.yml

  • Committer: Package Import Robot
  • Author(s): Michael Vogt, Harlan Lieberman-Berg, Michael Vogt
  • Date: 2013-11-01 09:40:59 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20131101094059-6w580ocxzqyqzuu3
Tags: 1.3.4+dfsg-1
[ Harlan Lieberman-Berg ]
* New upstream release (Closes: #717777).
  Fixes CVE-2013-2233 (Closes: #714822).
  Fixes CVE-2013-4259 (Closes: #721766).
* Drop fix-ansible-cfg patch.
* Change docsite generation to not expect docs as part of a wordpress install.
* Add trivial patch to fix lintian error with rpm-key script.
* Add patch header information to fix-html-makefile.

[ Michael Vogt ]
* add myself to uploader
* build/ship the module manpages for ansible in the ansible package

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
---
 
2
- hosts: all
 
3
  connection: local
 
4
  gather_facts: False
 
5
 
 
6
  vars: 
 
7
    internal: "print me"
 
8
 
 
9
  tasks: 
 
10
  - action: debug msg="skip me"
 
11
    when_unset: $internal
 
12
 
 
13
  - action: debug msg="$internal"
 
14
    when_set: $internal
 
15
 
 
16
  - action: debug msg="skip me"
 
17
    when_unset: $external
 
18
 
 
19
  - action: debug msg="$external"
 
20
    when_set: $external
 
21
 
 
22
  - action: debug msg="run me"
 
23
    when_unset: $this_var_does_not_exist
 
24
 
 
25
  - action: debug msg="skip me"
 
26
    when_set: $this_var_does_not_exist
 
27