UNPKG

penguins-eggs

Version:

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

82 lines (81 loc) 2.83 kB
/** * ./src/classes/incubation/distros/opensuse.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 Opensuse { distro; installer = {}; isClone = false; release = false; remix; theme; 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.buildModule('machineid'); await fisherman.buildModule('fstab'); await fisherman.buildModule('locale', this.theme); await fisherman.buildModule('keyboard'); await fisherman.buildModule('localecfg'); await fisherman.buildModule('dracutcfg'); await fisherman.buildModule('users', this.theme); await fisherman.moduleDisplaymanager(); await fisherman.buildModule('networkcfg'); await fisherman.buildModule('hwclock'); await fisherman.buildModule('services-systemd'); await fisherman.buildModule('dracut'); await fisherman.buildModule('grubcf'); await fisherman.buildModule('bootloader'); await fisherman.modulePackages(this.distro, this.release); //await fisherman.buildModule('luksbootkeyfile') await fisherman.buildModule('plymouthcfg'); //await fisherman.buildModule('mkinitfs') await fisherman.moduleRemoveuser(this.user_opt); // 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.moduleFinished(); } }