penguins-eggs
Version:
A remaster system tool, compatible with Arch, Debian, Devuan, Ubuntu and others
84 lines (83 loc) • 3.06 kB
JavaScript
/**
* ./src/classes/incubation/distros/bionic.ts
* penguins-eggs v.10.0.0 / ecmascript 2020
* author: Piero Proietti
* email: piero.proietti@gmail.com
* license: MIT
*/
import CFS from '../../../krill/classes/cfs.js';
import Fisherman from '../fisherman.js';
/**
*
*/
export class Bionic {
distro;
installer = {};
isClone;
release = false;
remix;
theme; // theme comprende il path
user_opt;
verbose = false;
/**
* @param remix
* @param distro
* @param release
* @param verbose
*/
constructor(installer, remix, distro, user_opt, release = false, theme = 'eggs', isClone = false, verbose = false) {
this.installer = installer;
this.remix = remix;
this.distro = distro;
this.user_opt = user_opt;
this.verbose = verbose;
this.release = release;
this.theme = theme;
this.isClone = isClone;
}
/**
* locale, partitions, users can come from themes
*/
async create() {
const fisherman = new Fisherman(this.distro, this.installer, this.verbose);
await fisherman.createCalamaresSettings(this.theme, this.isClone);
await fisherman.buildModule('welcome');
await fisherman.buildModule('partition', this.remix.branding);
await fisherman.buildModule('mount');
await fisherman.moduleUnpackfs(); //
await fisherman.buildModule('machineid');
await fisherman.buildModule('fstab');
await fisherman.buildModule('locale', this.remix.branding);
await fisherman.buildModule('keyboard');
await fisherman.buildModule('localecfg');
await fisherman.buildModule('luksbootkeyfile');
await fisherman.buildModule('users', this.remix.branding);
await fisherman.moduleDisplaymanager(); //
await fisherman.buildModule('networkcfg');
await fisherman.buildModule('hwclock');
await fisherman.buildCalamaresModule('sources-yolk', true);
await fisherman.buildCalamaresModule('bug');
await fisherman.buildModule('initramfscfg');
await fisherman.buildModule('initramfs');
await fisherman.buildCalamaresPy('grubcfg');
await fisherman.buildModule('bootloader');
await fisherman.buildCalamaresModule('after-bootloader');
await fisherman.buildCalamaresModule('add386arch', false);
await fisherman.modulePackages(this.distro, this.release); //
await fisherman.moduleRemoveuser(this.user_opt); //
await fisherman.buildCalamaresModule('sources-yolk-undo', false);
await fisherman.buildCalamaresModule('cleanup', true);
/**
* cfs: custom final steps
*/
const cfs = new CFS();
const steps = await cfs.steps();
if (steps.length > 0) {
for (const step of steps) {
await fisherman.buildCalamaresModule(step, true, this.theme);
}
}
await fisherman.buildModule('umount');
await fisherman.buildModule('finished');
}
}