test-prepare-host: Fix typo in postup/postdown options for SUSE

The correct options are POST_{UP,DOWN}_SCRIPT

Change-Id: Ia4dc477151001bd22ab581cbb30369415c55de66
This commit is contained in:
Markos Chandras 2017-09-02 12:46:22 +01:00
parent e24b828c30
commit aaa6825c14
1 changed files with 1 additions and 1 deletions

View File

@ -130,7 +130,7 @@
- name: Configure ifcfg files to use the post-down script (SUSE)
lineinfile:
dest: "/etc/sysconfig/network/ifcfg-{{ item[1].name | default('br-mgmt') }}"
line: "POST_DOWN_SCRIPTS=\"compat:suse:{{ item[0] }}-veth-{{ item[1].name | default('br-mgmt') }}-2-{{ item[1].veth_peer | default('eth1') }}\""
line: "POST_DOWN_SCRIPT=\"compat:suse:{{ item[0] }}-veth-{{ item[1].name | default('br-mgmt') }}-2-{{ item[1].veth_peer | default('eth1') }}\""
with_nested:
- ['ifdown-post']
- "{{ bridges }}"