UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

16 lines 844 B
/** A structure describing informations about installation custom */ export interface InstallCustom { /** Personnal hostname to use in server reinstallation */ customHostname?: string; /** Disk group id to process install on (only available for some templates) */ diskGroupId?: number; /** true if you want to install only on the first disk */ noRaid?: boolean; /** the url to your custom install script */ postInstallationScriptLink?: string; /** the return of your script if everythings ok. Advice: your script should return a unique validation string in case of succes. A good example is "loh1Xee7eo OK OK OK UGh8Ang1Gu */ postInstallationScriptReturn?: string; /** Number of devices to use for system's software RAID */ softRaidDevices?: number; } //# sourceMappingURL=InstallCustom.d.ts.map