diff options
author | Maitreyee Saikia <msaikia@vmware.com> | 2017-12-08 10:10:40 -0700 |
---|---|---|
committer | Chad Smith <chad.smith@canonical.com> | 2017-12-08 10:15:00 -0700 |
commit | ce33e423cde806a0590fec635778d62836e1bd37 (patch) | |
tree | 630ee644a3c56be85d8e85050b317e53b6c459b7 /cloudinit/sources/helpers/vmware/imc/config_nic.py | |
parent | 05b2308aa7e30337c2a455b5d2c67871b233e25c (diff) | |
download | vyos-cloud-init-ce33e423cde806a0590fec635778d62836e1bd37.tar.gz vyos-cloud-init-ce33e423cde806a0590fec635778d62836e1bd37.zip |
VMware: Support for user provided pre and post-customization scripts
In the VMware customization workflow, we have some options for the user
to upload scripts for additional customization. Based on user request,
those custom scripts can be either run before regular customization or
after. For post customization scripts, we decide whether to run the scripts
just after customization or post system reboot.
Diffstat (limited to 'cloudinit/sources/helpers/vmware/imc/config_nic.py')
-rw-r--r-- | cloudinit/sources/helpers/vmware/imc/config_nic.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cloudinit/sources/helpers/vmware/imc/config_nic.py b/cloudinit/sources/helpers/vmware/imc/config_nic.py index 2fb07c59..2d8900e2 100644 --- a/cloudinit/sources/helpers/vmware/imc/config_nic.py +++ b/cloudinit/sources/helpers/vmware/imc/config_nic.py @@ -161,7 +161,7 @@ class NicConfigurator(object): if nic.primary and v4.gateways: self.ipv4PrimaryGateway = v4.gateways[0] subnet.update({'gateway': self.ipv4PrimaryGateway}) - return [subnet] + return ([subnet], route_list) # Add routes if there is no primary nic if not self._primaryNic: |