This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | [Trigger] | |
| Operation = Install | |
| Operation = Upgrade | |
| Type = Path | |
| Target = usr/lib/systemd/boot/efi/systemd-boot*.efi | |
| [Action] | |
| Description = Signing systemd-boot EFI binary for Secure Boot | |
| When = PostTransaction | |
| Exec = /bin/sh -c 'while read -r f; do /usr/lib/systemd/systemd-sbsign sign --private-key /path/to/keyfile.key --certificate /path/to/certificate.crt --output "${f}.signed" "$f"; done;' | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | # Ignore SR-IOV interface on Azure, since it's transparently bonded | |
| # to the synthetic interface | |
| [Match] | |
| Driver=mlx4_en mlx5_en mlx4_core mlx5_core | |
| [Link] | |
| Unmanaged=yes | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | import http.client | |
| import sys | |
| from xml.etree import ElementTree | |
| wireserver_ip = '168.63.129.16' | |
| wireserver_conn = http.client.HTTPConnection(wireserver_ip) | |
| print('Retrieving goal state from the Wireserver') | |
| wireserver_conn.request( | |
| 'GET', |