diff options
Diffstat (limited to 'cloudinit/net/eni.py')
| -rw-r--r-- | cloudinit/net/eni.py | 4 | 
1 files changed, 4 insertions, 0 deletions
| diff --git a/cloudinit/net/eni.py b/cloudinit/net/eni.py index 13c041f3..0074691b 100644 --- a/cloudinit/net/eni.py +++ b/cloudinit/net/eni.py @@ -401,6 +401,10 @@ class Renderer(renderer.Renderer):          sections = []          subnets = iface.get('subnets', {})          accept_ra = iface.pop('accept-ra', None) +        ethernet_wol = iface.pop('wakeonlan', None) +        if ethernet_wol: +            # Specify WOL setting 'g' for using "Magic Packet" +            iface['ethernet-wol'] = 'g'          if subnets:              for index, subnet in enumerate(subnets):                  ipv4_subnet_mtu = None | 
