/** /** * penguins-eggs * class: systemctl.ts * author: Piero Proietti * email: piero.proietti@gmail.com * Presa da https://github.com/VolantisDev/node-systemctl * license: MIT */ export default class SistemdCtl { echo: {}; constructor(verbose?: boolean); /** * */ disable(service: string, chroot?: string, report?: boolean): Promise; /** * */ enable(service: string, chroot?: string, report?: boolean): Promise; /** * * @param service * @returns */ isActive(service: string): Promise; /** * */ isEnabled(service: string): Promise; /** * */ reload(service: string): Promise; /** * */ restart(service: string): Promise; /** * */ start(service: string): Promise; /** * */ stop(service: string): Promise; }