mirror of https://github.com/apache/cloudstack.git
agent: Add cloud-plugin-hypervisor-kvm.jar to the classpath
Without this the JAR won't end up in the CLASSPATH in the agent init script
This commit is contained in:
parent
2d1d43dd2b
commit
d333e31069
|
|
@ -293,7 +293,7 @@ msclasspath = [ in_javadir("%s-%s.jar"%(conf.env.PACKAGE,x)) for x in "utils api
|
|||
conf.env.MSCLASSPATH = pathsep.join(msclasspath)
|
||||
|
||||
# the agent and simulator classpaths point to JARs required to run these two applications
|
||||
agentclasspath = [ in_javadir("%s-%s.jar"%(conf.env.PACKAGE,x)) for x in "utils api core server server-extras agent console-common console-proxy core-extras agent-extras".split() ]
|
||||
agentclasspath = [ in_javadir("%s-%s.jar"%(conf.env.PACKAGE,x)) for x in "utils api core server server-extras agent console-common console-proxy core-extras agent-extras plugin-hypervisor-kvm".split() ]
|
||||
agentclasspath.append(in_javadir("jna.jar"))
|
||||
conf.env.AGENTCLASSPATH = pathsep.join(agentclasspath)
|
||||
conf.env.AGENTSIMULATORCLASSPATH = pathsep.join(agentclasspath+[in_javadir("%s-agent-simulator.jar"%conf.env.PACKAGE)])
|
||||
|
|
|
|||
Loading…
Reference in New Issue