Native installers for azdata in auto deployment (#8285)

* code complete

* minor fixes from self-review

* installation searchaPaths and display logs fixes

* revert inadvertent change

* fixing installaton roott for debian and mac

* Chaning from getos to linux-release-info with sync api usage for figuring out os distribution

* adding file missed in previous commit

* fixing indvertent compile error that creeped in

* fix default install root for azli
This commit is contained in:
Arvind Ranasaria
2019-11-17 21:39:57 -08:00
committed by GitHub
parent dae71c3bf4
commit bafd9fd437
11 changed files with 529 additions and 449 deletions

View File

@@ -201,12 +201,21 @@ export interface NotebookInfo {
linux: string;
}
export enum OsType {
export enum OsDistribution {
win32 = 'win32',
darwin = 'darwin',
linux = 'linux',
debian = 'debian',
others = 'others'
}
export interface OsRelease extends JSON {
type: string;
platform: string;
hostname: string;
arch: string;
release: string;
id?: string;
id_like?: string;
}
export interface ToolRequirementInfo {
name: string;