penguins-eggs
Version:
A remaster system tool, compatible with Arch, Debian, Devuan, Ubuntu and others
33 lines (32 loc) • 784 B
TypeScript
/**
* ./src/interfaces/i-eggs-config.ts
* penguins-eggs v.10.0.0 / ecmascript 2020
* author: Piero Proietti
* email: piero.proietti@gmail.com
* license: MIT
*/
export interface IEggsConfig {
compression: string;
force_installer: boolean;
initrd_img: string;
locales: string[];
locales_default: string;
machine_id: string;
make_efi: boolean;
make_isohybrid: boolean;
make_md5sum: boolean;
pmount_fixed: boolean;
root_passwd: string;
snapshot_basename: string;
snapshot_dir: string;
snapshot_excludes: string;
snapshot_mnt: string;
snapshot_prefix: string;
ssh_pass: boolean;
theme: string;
timezone: string;
user_opt: string;
user_opt_passwd: string;
version: string;
vmlinuz: string;
}