Merge "Avoid ifcfg files modification when a reboot is not required"

This commit is contained in:
Zuul 2018-08-13 10:09:16 +00:00 committed by Gerrit Code Review
commit f822a5aed6
1 changed files with 4 additions and 1 deletions

View File

@ -55,6 +55,7 @@
patterns: ifcfg-*
contains: "# This file is autogenerated by os-net-config"
register: os_net_ifcfg_files
when: reboot_required is defined and reboot_required
# Provisioning Network workaround
# The script will be executed before os-net-config, in which case, only Provisioning network will have IP
@ -79,4 +80,6 @@
with_items:
- "{{ ifcfg_files.files }}"
become: true
when: os_net_ifcfg_files.matched == 0
when:
- reboot_required is defined and reboot_required
- os_net_ifcfg_files.matched == 0