Apache CloudStack for Arch Linux
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.

14 lines
795 B

  1. From: Pekka Helenius <pekka.helenius@fjordtek.com>
  2. Subject: Fix hard-coded value
  3. --- a/plugins/hypervisors/kvm/src/main/java/com/cloud/hypervisor/kvm/resource/LibvirtComputingResource.java 2022-01-22 19:34:51.577142694 +0200
  4. +++ b/plugins/hypervisors/kvm/src/main/java/com/cloud/hypervisor/kvm/resource/LibvirtComputingResource.java 2022-01-22 19:37:51.473675363 +0200
  5. @@ -908,7 +908,7 @@
  6. throw new ConfigurationException("Unable to find the ovstunnel.py");
  7. }
  8. - _routerProxyPath = Script.findScript("scripts/network/domr/", "router_proxy.sh");
  9. + _routerProxyPath = Script.findScript(domrScriptsDir, "router_proxy.sh");
  10. if (_routerProxyPath == null) {
  11. throw new ConfigurationException("Unable to find the router_proxy.sh");
  12. }