MEschenbacher's Wireguard Saltstack Formula
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
1.1KB

  1. # -*- coding: utf-8 -*-
  2. # vim: ft=yaml
  3. #
  4. # Setup variables using grains['osarch'] based logic.
  5. # You just need to add the key:values for an `osarch` that differ
  6. # from `defaults.yaml`.
  7. # Only add an `osarch` which is/will be supported by the formula.
  8. #
  9. # If you do not need to provide defaults via the `osarch` grain,
  10. # you will need to provide at least an empty dict in this file, e.g.
  11. # osarch: {}
  12. ---
  13. Leap-15:
  14. aarch64:
  15. repository:
  16. name: wireguard
  17. humanname: Wireguard VPN
  18. baseurl: https://download.opensuse.org/repositories/network:/vpn:/wireguard/openSUSE_Leap_15.1_ARM
  19. gpgautoimport: True
  20. gpgkey: https://download.opensuse.org/repositories/network:/vpn:/wireguard/openSUSE_Leap_15.1/repodata/repomd.xml.key
  21. gpgcheck: 1
  22. x86_64:
  23. repository:
  24. name: wireguard
  25. humanname: Wireguard VPN
  26. baseurl: https://download.opensuse.org/repositories/network:/vpn:/wireguard/openSUSE_Leap_15.1
  27. gpgautoimport: True
  28. gpgkey: https://download.opensuse.org/repositories/network:/vpn:/wireguard/openSUSE_Leap_15.1/repodata/repomd.xml.key
  29. gpgcheck: 1
  30. default:
  31. default: {}