Package org.platformlayer.ops.networks

Examples of org.platformlayer.ops.networks.ScriptBuilder


    this.fileMode = "755";
  }

  @Override
  protected byte[] getContentsBytes() throws OpsException {
    ScriptBuilder sb = new ScriptBuilder();

    addIpNeighborProxy(sb);

    sb.add(launchInstanceCommand);

    String script = sb.toString();

    return Utf8.getBytes(script);
  }
View Full Code Here


  @Override
  protected byte[] getContentsBytes() throws OpsException {
    Command command = buildIptablesAddCommand();

    ScriptBuilder sb = new ScriptBuilder();
    sb.addMetadata("key", ruleKey);
    sb.add(command);

    return sb.getBytes();
  }
View Full Code Here

    default:
      throw new IllegalStateException();
    }
    File scriptFile = new File(transportDirectory, fileName);

    ScriptBuilder sb = new ScriptBuilder();
    sb.add(command);

    String script = sb.toString();

    String existing = target.readTextFile(scriptFile);

    boolean shouldUpload = true;
    if (existing != null) {
View Full Code Here

TOP

Related Classes of org.platformlayer.ops.networks.ScriptBuilder

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.