All Downloads are FREE. Search and download functionalities are using the official Maven repository.

os.rio-core.0.6.0.source-code.GentooPrepare Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2014 Objectos, Fábrica de Software LTDA.
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
 * use this file except in compliance with the License. You may obtain a copy of
 * the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 * License for the specific language governing permissions and limitations under
 * the License.
 */
package br.com.objectos.rio;

/**
 * @author [email protected] (Marcio Endo)
 */
public class GentooPrepare extends AbstractGentoo {

  final GentooPrepareBuilderPojo pojo;

  GentooPrepare(GentooPrepareBuilderPojo builder) {
    super(builder.command);
    pojo = builder;
  }

  public void stage() {
    execute(new GentooPrepareCommandStage(this));
  }

  public void objectos() {
    execute(new GentooPrepareCommandObjectos(this));
  }

  public void ekernel() {
    execute(new GentooPrepareCommandEKernel(this));
  }

  public void initramfs() {
    execute(new GentooPrepareCommandInitramfs(this));
  }

  public void gccConfig() {
    execute(new GentooPrepareCommandGccConfig(this));
  }

  public void eworld() {
    execute(new GentooPrepareCommandEWorld(this));
  }

  public void revdep() {
    execute(new GentooPrepareCommandRevdep(this));
  }

  public void grub() {
    execute(new GentooPrepareCommandGrub(this));
  }

  public void rio() {
    execute(new GentooPrepareCommandRio(this));
  }

  public void chmod() {
    execute(new GentooPrepareCommandChmod(this));
  }

  public void mkdir() {
    execute(new GentooPrepareCommandMkdir(this));
  }

  public void move() {
    execute(new GentooPrepareCommandMove(this));
  }

  public void rcUpdate() {
    execute(new GentooPrepareCommandRcUpdate(this));
  }

  public void realtek() {
    execute(new GentooPrepareCommandRealtek(this));
  }

  public void symlink() {
    execute(new GentooPrepareCommandSymlink(this));
  }

  public void useradd() {
    execute(new GentooPrepareCommandUseradd(this));
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy