2016-07-29 58 views
3

我使用ansible版本2.1.0.0和我的代碼部分是:Ansible - 劇本:請確保您的變量名稱不包含無效字符,如「 - 」

- shell: /etc/init.d/named restart 
    when: ('FAILED' not in zoneconfig.stdout) and ('neither' not in zoneconfig.stdout) and ('FAILED' not in echofail.stdout) and ('SUCCESSFUL' in echopass.stdout_lines) and ('SUCCESSFUL' in zoneconfig.stdout) 
    ignore_errors: True 
    register: namedrestart 
- debug: var=namedrestart.stdout_lines 
    when: ('FAILED' not in zoneconfig.stdout) and ('neither' not in zoneconfig.stdout) and ('FAILED' not in echofail.stdout) and ('SUCCESSFUL' in echopass.stdout_lines) and ('SUCCESSFUL' in zoneconfig.stdout) 
    ignore_errors: True 

- shell: /etc/init.d/named status 
    when: ('FAILED' not in zoneconfig.stdout) and ('neither' not in zoneconfig.stdout) and ('FAILED' not in echofail.stdout) and ('SUCCESSFUL' in echopass.stdout_lines) and ('SUCCESSFUL' in zoneconfig.stdout) 
    ignore_errors: True 
    register: namedstatus 
- debug: var=namedstatus.stdout_lines 
    when: ('FAILED' not in zoneconfig.stdout) and ('neither' not in zoneconfig.stdout) and ('FAILED' not in echofail.stdout) and ('SUCCESSFUL' in echopass.stdout_lines) and ('SUCCESSFUL' in zoneconfig.stdout) 
    ignore_errors: True 

其拋出的錯誤爲:

TASK [debug] ******************************************************************* 
fatal: [10.139.73.152]: FAILED! => {"failed": true, "msg": "The conditional check '('FAILED' not in zoneconfig.stdout) and ('neither' not in zoneconfig.stdout) and ('FAILED' not in echofail.stdout) and ('SUCCESSFUL' in echopass.stdout_lines) and ('SUCCESSFUL' in zoneconfig.stdout)' failed. The error was: error while evaluating conditional (('FAILED' not in zoneconfig.stdout) and ('neither' not in zoneconfig.stdout) and ('FAILED' not in echofail.stdout) and ('SUCCESSFUL' in echopass.stdout_lines) and ('SUCCESSFUL' in zoneconfig.stdout)): Unable to look up a name or access an attribute in template string ({% if ('FAILED' not in zoneconfig.stdout) and ('neither' not in zoneconfig.stdout) and ('FAILED' not in echofail.stdout) and ('SUCCESSFUL' in echopass.stdout_lines) and ('SUCCESSFUL' in zoneconfig.stdout) %} True {% else %} False {% endif %}).\nMake sure your variable name does not contain invalid characters like '-': argument of type 'StrictUndefined' is not iterable\n\nThe error appears to have been in '/etc/ansible/named_configtest/configtest_named.yml': line 51, column 7, but may\nbe elsewhere in the file depending on the exact syntax problem.\n\nThe offending line appears to be:\n\n  register: namedrestart\n - debug: var=namedrestart.stdout_lines\n ^here\n"} 
...ignoring 

請讓我知道,如果有什麼解決辦法來解決這個問題

+0

在使用的所有變量'when'在測試時定義語句? –

回答

2

這是一個令人困惑的錯誤消息 - 在我的情況下,用一個簡單的if 'abc' in mylist條件,問題是Ĵ因爲mylist var是未定義的。

嘗試增加線路這樣的顯示所涉及的增值經銷商:

- debug: var=zoneconfig 
- debug: var=zoneconfig.stdout 
相關問題