AnsibleWorks -> Ansible

This commit is contained in:
Michael DeHaan 2014-01-28 11:38:52 -05:00
commit d07a3b5e9b
13 changed files with 32 additions and 32 deletions

View file

@ -99,7 +99,7 @@ class Task(object):
if isinstance(ds[x], basestring) and ds[x].lstrip().startswith("{{"):
utils.warning("It is unneccessary to use '{{' in conditionals, leave variables in loop expressions bare.")
elif x.startswith("when_"):
utils.deprecated("The 'when_' conditional has been removed. Switch to using the regular unified 'when' statements as described in ansibleworks.com/docs/.","1.5", removed=True)
utils.deprecated("The 'when_' conditional has been removed. Switch to using the regular unified 'when' statements as described on docs.ansible.com.","1.5", removed=True)
if 'when' in ds:
raise errors.AnsibleError("multiple when_* statements specified in task %s" % (ds.get('name', ds['action'])))

View file

@ -1,4 +1,4 @@
# (c) 2013-2014, Benno Joy <benno@ansibleworks.com>
# (c) 2013-2014, Benno Joy <benno@ansible.com>
#
# This file is part of Ansible
#