UNPKG

penguins-eggs

Version:

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

101 lines (100 loc) 2.81 kB
/** * ./src/classes/families/openmamba.ts * penguins-eggs v.10.0.0 / ecmascript 2020 * author: Piero Proietti * email: piero.proietti@gmail.com * license: MIT */ import fs from 'node:fs'; import shx from 'shelljs'; import { exec } from '../../lib/utils.js'; import Utils from '../utils.js'; /** * Utils: general porpourse utils * @remarks all the utilities */ export default class Openmamba { /** * */ static async calamaresInstall(verbose = true) { const echo = Utils.setEcho(verbose); try { await exec('dnf install calamares -y', echo); } catch { Utils.error(`openmamba.calamaresInstall()`); } } /** * * calamaresPolicies */ static async calamaresPolicies(verbose = false) { // nothing } /** * */ static async calamaresRemove(verbose = true) { const echo = Utils.setEcho(verbose); const retVal = false; if (fs.existsSync('/etc/calamares')) { await exec('rm /etc/calamares -rf', echo); } await exec('dnf remove calamares', echo); return retVal; } /** * check if it's installed wayland * @returns true if wayland */ static isInstalledWayland() { return this.packageIsInstalled('xorg-x11-server-Xwayland*'); } /** * check if it's installed xorg * @returns true if xorg is installed */ static isInstalledXorg() { return this.packageIsInstalled('xorg-x11-server-Xorg.x86_64'); } /** * restuisce VERO se il pacchetto è installato * @param packageName */ static async packageAvailable(packageName) { let available = false; const cmd = `/usr/bin/dnf list --available ${packageName} | grep Package:`; const stdout = shx.exec(cmd, { silent: true }).stdout.trim(); if (stdout.includes(packageName)) { available = true; } return available; } /** * Install the package packageName * @param packageName {string} Pacchetto da installare * @returns {boolean} True if success */ static async packageInstall(packageName) { let retVal = false; if (shx.exec(`/usr/bin/dnf install ${packageName}`, { silent: false }) === '0') { retVal = true; } return retVal; } /** * restuisce VERO se il pacchetto è installato * @param packageName */ static packageIsInstalled(packageName) { let installed = false; const cmd = `/usr/bin/dnf list --installed ${packageName}`; const stdout = shx.exec(cmd, { silent: true }).stdout.trim(); if (stdout.includes(packageName)) { installed = true; } return installed; } }