import chalk from 'chalk' import { command, execSync, log } from './helpers/command.js' /** * lets-encrypt.js * * installing lets encrypt and * activate cerbot.timer for renew certifactes * */ try { log(chalk.green('Installing letsencrypt')) command('apt-get install -y letsencrypt') command('systemctl status certbot.timer') } catch(error) { }