penguins-eggs
Version:
A remaster system tool, compatible with Almalinux, Alpine, Arch, Debian, Devuan, Fedora, Manjaro, Opensuse, Ubuntu and derivatives
24 lines (23 loc) • 622 B
JavaScript
/**
* ./src/lib/get_netmask.ts
* penguins-eggs v.25.7.x / ecmascript 2020
* author: Piero Proietti
* email: piero.proietti@gmail.com
* license: MIT
*/
import inquirer from 'inquirer';
export default async function getNetmask(initial) {
return new Promise((resolve) => {
const questions = [
{
default: initial,
message: 'What is netmask of this computer? ',
name: 'netmask',
type: 'input'
}
];
inquirer.prompt(questions).then((options) => {
resolve(options.netmask);
});
});
}