UNPKG

penguins-eggs

Version:

A remaster system tool, compatible with Arch, Debian, Devuan, Ubuntu and others

86 lines (85 loc) 3.16 kB
/** * ./src/classes/incubation/distros/focal.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 Noble { distro; installer = {}; isClone; release = false; remix; theme; // theme comprende il path user_opt; verbose = false; /** * @param remix * @param distro * @param displaymanager * @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.theme); await fisherman.buildModule('mount'); await fisherman.moduleUnpackfs(); await fisherman.buildCalamaresModule('sources-yolk', true); await fisherman.buildModule('machineid'); await fisherman.buildModule('fstab'); await fisherman.buildModule('locale', this.theme); await fisherman.buildModule('keyboard'); await fisherman.buildModule('localecfg'); await fisherman.buildModule('luksbootkeyfile'); await fisherman.buildModule('users', this.theme); await fisherman.moduleDisplaymanager(); await fisherman.buildModule('networkcfg'); await fisherman.buildModule('hwclock'); await fisherman.contextualprocess('before_bootloader_mkdirs'); await fisherman.shellprocess('bug-LP#1829805'); await fisherman.buildModule('initramfs'); await fisherman.buildModule('grubcfg'); await fisherman.contextualprocess('before_bootloader'); await fisherman.buildModule('bootloader'); await fisherman.contextualprocess('after_bootloader'); await fisherman.shellprocess('add386arch'); await fisherman.modulePackages(this.distro, this.release); // await fisherman.moduleRemoveuser(this.user_opt); await fisherman.buildCalamaresModule('sources-yolk', false); 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'); } }