return new DisklessEtoMirrorOptions();
}
@Override
protected void executeCommand(DisklessEtoMirrorOptions options) {
GentooMirror mirror = gentoo.mirror(this)
.server(options.server)
.remotePath(options.remotePath())
.mountDir(dirs.etoMountDir())
.stage3File(options.stage3File(dirs))
.build();
if (options.stage3) {
mirror.stage3();
}
if (options.stage3Upload) {
mirror.stage3Upload();
}
}