Package com.sun.grid.installer.util.cmd

Examples of com.sun.grid.installer.util.cmd.GetJvmLibCommand


            String sgeRoot = idata.getVariable(VAR_SGE_ROOT);
            String remHost = (isQmasterInst) ? idata.getVariable(VAR_QMASTER_HOST) : Host.localHostName;
            String libjvm="";

            //TODO: Verify behavior of delay and when connection is not possible via rsh
            GetJvmLibCommand cmd = new GetJvmLibCommand(remHost, Util.DEF_CONNECT_USER, idata.getVariable(VAR_SHELL_NAME), Util.IS_MODE_WINDOWS, sgeRoot);
            cmd.execute();
            if (cmd.getOutput() != null && cmd.getOutput().size() > 0) {
                libjvm = cmd.getOutput().get(0);
            }
            idata.setVariable(VAR_JVM_LIB_PATH, libjvm);
        }

        // In case of execd and/or shadow host standalone installation source the settings.sh boostrap and act_qmaster files
View Full Code Here

TOP

Related Classes of com.sun.grid.installer.util.cmd.GetJvmLibCommand

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.