Merge pull request #17 from kylemanna/network

install: Add network header override
This commit is contained in:
Gavin Li 2015-07-08 09:42:31 -07:00
commit 55c4ee9ac1
1 changed files with 5 additions and 0 deletions

View File

@ -912,6 +912,11 @@ process_interface() {
fi
log "Added IPv6 address ${address}/${prefix} on ${interface}."
fi
local network_tail=/etc/systemd/network/template/dosync-${interface}.network.tail
if [[ -r "${network_tail}" ]]; then
cat ${network_tail}
log "Appended user specified config for ${interface}."
fi
} > /run/systemd/network/dosync-${interface}.network
}