UNPKG

penguins-eggs

Version:

A remaster system tool, compatible with Almalinux, Alpine, Arch, Debian, Devuan, Fedora, Manjaro, Opensuse, Ubuntu and derivatives

128 lines (127 loc) 3.8 kB
/** * ./src/classes/families/archlinux.ts * penguins-eggs v.25.7.x / ecmascript 2020 * author: Piero Proietti * email: piero.proietti@gmail.com * license: MIT */ import fs from 'node:fs'; import { exec, shx } from '../../lib/utils.js'; import Utils from '../utils.js'; /** * Archlinux * @remarks all the utilities */ export default class Archlinux { static packs4calamares = ['calamares']; // , 'calamares'] /** * Archlinux: calamaresInstall */ static async calamaresInstall(verbose = false) { verbose = true; // serve per pacman const echo = Utils.setEcho(verbose); const cmd = `pacman -S calamares --noconfirm`; try { await exec(cmd, echo); } catch { Utils.error(`Cannot install calamares`); } } /** * * calamaresPolicies */ static async calamaresPolicies(verbose = false) { // nothing } /** * Archlinux: calamaresRemove */ static async calamaresRemove(verbose = true) { verbose = true; // serve per pacman let success = false; const echo = Utils.setEcho(verbose); try { await exec('pacman -R calamares calamares --noconfirm', echo); success = true; } catch { Utils.error(`Cannot remove calamares`); } if (success && fs.existsSync('/etc/calamares')) { await exec('rm /etc/calamares -rf', echo); } return success; } /** * Archlinux: isInstalledWayland * @returns true if wayland is installed */ static isInstalledWayland() { return this.packageIsInstalled('xwayland'); } /** * Archlinux: isInstalledXorg * @returns true if xorg is installed */ static isInstalledXorg() { return this.packageIsInstalled('xorg-server-common'); } /** * Archlinux: packageInstall * Install the package packageName * @param packageName {string} Pacchetto Debian da installare * @returns {boolean} True if success */ static async packageInstall(packageName) { let retVal = false; if (shx.exec('/usr/bin/pacman -Si ' + packageName, { silent: true }).code === 0) { retVal = true; } return retVal; } /** * Archlinux: packageIsInstalled * restuisce VERO se il pacchetto è installato * @param packageName */ static packageIsInstalled(packageName) { let installed = false; const cmd = `/usr/bin/pacman -Qi ${packageName}`; const stdout = shx.exec(cmd, { silent: true }).stdout.trim(); if (stdout.includes(packageName)) { installed = true; } return installed; } /** * Archlinux: packagePacmanAvailable * restuisce VERO se il pacchetto è installato * @param packageName */ static async packagePacmanAvailable(packageName) { let available = false; const cmd = `/usr/bin/pacman -Q ${packageName} | awk '{ print $1 }'`; const stdout = shx.exec(cmd, { silent: true }).stdout.trim(); if (stdout == packageName) { available = true; } return available; } /** * Archlinux: packagePacmanLast * @param packageName * @returns */ static async packagePacmanLast(packageName) { let version = ''; const cmd = `/usr/bin/pacman -Q ${packageName} | grep Version:`; const stdout = shx.exec(cmd, { silent: true }).stdout.trim(); version = stdout.slice(9); // console.log('===================================') // console.log('[' + version + ']') // console.log('===================================') return version; } }