hudson.os.solaris.ZFSInstaller.migrate()方法的使用及代码示例

x33g5p2x  于2022-02-05 转载在 其他  
字(5.0k)|赞(0)|评价(0)|浏览(103)

本文整理了Java中hudson.os.solaris.ZFSInstaller.migrate()方法的一些代码示例,展示了ZFSInstaller.migrate()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZFSInstaller.migrate()方法的具体详情如下:
包路径:hudson.os.solaris.ZFSInstaller
类名称:ZFSInstaller
方法名:migrate

ZFSInstaller.migrate介绍

[英]Migrates $HUDSON_HOME to a new ZFS file system. TODO: do this in a separate JVM to elevate the privilege.
[中]将$HUDSON_HOME迁移到新的ZFS文件系统。TODO:在单独的JVM中执行此操作以提升权限。

代码示例

代码示例来源:origin: jenkinsci/jenkins

@Extension
public static AdministrativeMonitor init() {
  String migrationTarget = SystemProperties.getString(ZFSInstaller.class.getName() + ".migrate");
  if(migrationTarget!=null) {
    ByteArrayOutputStream out = new ByteArrayOutputStream();
    StreamTaskListener listener = new StreamTaskListener(new ForkOutputStream(System.out, out));
    try {
      if(migrate(listener,migrationTarget)) {
        // completed successfully
        return new MigrationCompleteNotice();
      }
    } catch (Exception e) {
      // if we let any exception from here, it will prevent Hudson from starting.
      Functions.printStackTrace(e, listener.error("Migration failed"));
    }
    // migration failed
    return new MigrationFailedNotice(out);
  }
  // install the monitor if applicable
  ZFSInstaller zi = new ZFSInstaller();
  if(zi.isActivated())
    return zi;
  return null;
}

代码示例来源:origin: org.eclipse.hudson/hudson-core

@Extension
public static AdministrativeMonitor init() {
  String migrationTarget = System.getProperty(ZFSInstaller.class.getName() + ".migrate");
  if (migrationTarget != null) {
    ByteArrayOutputStream out = new ByteArrayOutputStream();
    StreamTaskListener listener = new StreamTaskListener(new ForkOutputStream(System.out, out));
    try {
      if (migrate(listener, migrationTarget)) {
        // completed successfully
        return new MigrationCompleteNotice();
      }
    } catch (Exception e) {
      // if we let any exception from here, it will prevent Hudson from starting.
      e.printStackTrace(listener.error("Migration failed"));
    }
    // migration failed
    return new MigrationFailedNotice(out);
  }
  // install the monitor if applicable
  ZFSInstaller zi = new ZFSInstaller();
  if (zi.isActivated()) {
    return zi;
  }
  return null;
}

代码示例来源:origin: org.jvnet.hudson.main/hudson-core

@Extension
public static AdministrativeMonitor init() {
  String migrationTarget = System.getProperty(ZFSInstaller.class.getName() + ".migrate");
  if(migrationTarget!=null) {
    ByteArrayOutputStream out = new ByteArrayOutputStream();
    StreamTaskListener listener = new StreamTaskListener(new ForkOutputStream(System.out, out));
    try {
      if(migrate(listener,migrationTarget)) {
        // completed successfully
        return new MigrationCompleteNotice();
      }
    } catch (Exception e) {
      // if we let any exception from here, it will prevent Hudson from starting.
      e.printStackTrace(listener.error("Migration failed"));
    }
    // migration failed
    return new MigrationFailedNotice(out);
  }
  // install the monitor if applicable
  ZFSInstaller zi = new ZFSInstaller();
  if(zi.isActivated())
    return zi;
  return null;
}

代码示例来源:origin: org.eclipse.hudson.main/hudson-core

@Extension
public static AdministrativeMonitor init() {
  String migrationTarget = System.getProperty(ZFSInstaller.class.getName() + ".migrate");
  if(migrationTarget!=null) {
    ByteArrayOutputStream out = new ByteArrayOutputStream();
    StreamTaskListener listener = new StreamTaskListener(new ForkOutputStream(System.out, out));
    try {
      if(migrate(listener,migrationTarget)) {
        // completed successfully
        return new MigrationCompleteNotice();
      }
    } catch (Exception e) {
      // if we let any exception from here, it will prevent Hudson from starting.
      e.printStackTrace(listener.error("Migration failed"));
    }
    // migration failed
    return new MigrationFailedNotice(out);
  }
  // install the monitor if applicable
  ZFSInstaller zi = new ZFSInstaller();
  if(zi.isActivated())
    return zi;
  return null;
}

代码示例来源:origin: hudson/hudson-2.x

@Extension
public static AdministrativeMonitor init() {
  String migrationTarget = System.getProperty(ZFSInstaller.class.getName() + ".migrate");
  if(migrationTarget!=null) {
    ByteArrayOutputStream out = new ByteArrayOutputStream();
    StreamTaskListener listener = new StreamTaskListener(new ForkOutputStream(System.out, out));
    try {
      if(migrate(listener,migrationTarget)) {
        // completed successfully
        return new MigrationCompleteNotice();
      }
    } catch (Exception e) {
      // if we let any exception from here, it will prevent Hudson from starting.
      e.printStackTrace(listener.error("Migration failed"));
    }
    // migration failed
    return new MigrationFailedNotice(out);
  }
  // install the monitor if applicable
  ZFSInstaller zi = new ZFSInstaller();
  if(zi.isActivated())
    return zi;
  return null;
}

代码示例来源:origin: org.jenkins-ci.main/jenkins-core

@Extension
public static AdministrativeMonitor init() {
  String migrationTarget = SystemProperties.getString(ZFSInstaller.class.getName() + ".migrate");
  if(migrationTarget!=null) {
    ByteArrayOutputStream out = new ByteArrayOutputStream();
    StreamTaskListener listener = new StreamTaskListener(new ForkOutputStream(System.out, out));
    try {
      if(migrate(listener,migrationTarget)) {
        // completed successfully
        return new MigrationCompleteNotice();
      }
    } catch (Exception e) {
      // if we let any exception from here, it will prevent Hudson from starting.
      Functions.printStackTrace(e, listener.error("Migration failed"));
    }
    // migration failed
    return new MigrationFailedNotice(out);
  }
  // install the monitor if applicable
  ZFSInstaller zi = new ZFSInstaller();
  if(zi.isActivated())
    return zi;
  return null;
}

相关文章