hostctl 0.1.41 → 0.1.42
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +165 -60
- package/dist/bin/hostctl.js +1 -1
- package/dist/bin/hostctl.js.map +1 -1
- package/dist/index.d.ts +150 -91
- package/dist/index.js +1241 -446
- package/dist/index.js.map +1 -1
- package/package.json +2 -1
package/dist/index.d.ts
CHANGED
|
@@ -839,13 +839,14 @@ interface EchoResult {
|
|
|
839
839
|
|
|
840
840
|
interface DirExistsParams {
|
|
841
841
|
path: string;
|
|
842
|
+
sudo?: boolean;
|
|
842
843
|
}
|
|
843
844
|
interface DirExistsResult {
|
|
844
845
|
exists: boolean;
|
|
845
846
|
success: boolean;
|
|
846
847
|
error?: string;
|
|
847
848
|
}
|
|
848
|
-
declare const _default$
|
|
849
|
+
declare const _default$3z: TaskFn<DirExistsParams, DirExistsResult>;
|
|
849
850
|
|
|
850
851
|
interface DirCopyParams {
|
|
851
852
|
from: string;
|
|
@@ -859,7 +860,7 @@ interface DirCopyResult {
|
|
|
859
860
|
success: boolean;
|
|
860
861
|
error?: string;
|
|
861
862
|
}
|
|
862
|
-
declare const _default$
|
|
863
|
+
declare const _default$3y: TaskFn<DirCopyParams, DirCopyResult>;
|
|
863
864
|
|
|
864
865
|
interface DirCreateParams {
|
|
865
866
|
path: string;
|
|
@@ -870,10 +871,10 @@ interface DirCreateResult {
|
|
|
870
871
|
success: boolean;
|
|
871
872
|
error?: string;
|
|
872
873
|
}
|
|
873
|
-
declare const _default$
|
|
874
|
+
declare const _default$3x: TaskFn<DirCreateParams, DirCreateResult>;
|
|
874
875
|
|
|
875
876
|
declare namespace dir {
|
|
876
|
-
export { _default$
|
|
877
|
+
export { _default$3y as copy, _default$3x as create, _default$3z as exists };
|
|
877
878
|
}
|
|
878
879
|
|
|
879
880
|
interface ChownParams {
|
|
@@ -887,7 +888,7 @@ interface ChownResult {
|
|
|
887
888
|
success: boolean;
|
|
888
889
|
error?: string;
|
|
889
890
|
}
|
|
890
|
-
declare const _default$
|
|
891
|
+
declare const _default$3w: TaskFn<ChownParams, ChownResult>;
|
|
891
892
|
|
|
892
893
|
interface ChgrpParams {
|
|
893
894
|
path: string;
|
|
@@ -899,7 +900,7 @@ interface ChgrpResult {
|
|
|
899
900
|
success: boolean;
|
|
900
901
|
error?: string;
|
|
901
902
|
}
|
|
902
|
-
declare const _default$
|
|
903
|
+
declare const _default$3v: TaskFn<ChgrpParams, ChgrpResult>;
|
|
903
904
|
|
|
904
905
|
interface ChmodParams {
|
|
905
906
|
path: string;
|
|
@@ -911,7 +912,7 @@ interface ChmodResult {
|
|
|
911
912
|
success: boolean;
|
|
912
913
|
error?: string;
|
|
913
914
|
}
|
|
914
|
-
declare const _default$
|
|
915
|
+
declare const _default$3u: TaskFn<ChmodParams, ChmodResult>;
|
|
915
916
|
|
|
916
917
|
interface FileCopyParams {
|
|
917
918
|
from: string;
|
|
@@ -926,39 +927,42 @@ interface FileCopyResult {
|
|
|
926
927
|
success: boolean;
|
|
927
928
|
error?: string;
|
|
928
929
|
}
|
|
929
|
-
declare const _default$
|
|
930
|
+
declare const _default$3t: TaskFn<FileCopyParams, FileCopyResult>;
|
|
930
931
|
|
|
931
932
|
interface FileExistsParams {
|
|
932
933
|
path: string;
|
|
934
|
+
sudo?: boolean;
|
|
933
935
|
}
|
|
934
936
|
interface FileExistsResult {
|
|
935
937
|
exists: boolean;
|
|
936
938
|
success: boolean;
|
|
937
939
|
error?: string;
|
|
938
940
|
}
|
|
939
|
-
declare const _default$
|
|
941
|
+
declare const _default$3s: TaskFn<FileExistsParams, FileExistsResult>;
|
|
940
942
|
|
|
941
943
|
interface FileTouchParams {
|
|
942
944
|
file: string;
|
|
943
945
|
mode?: string;
|
|
944
946
|
owner?: string;
|
|
947
|
+
sudo?: boolean;
|
|
945
948
|
}
|
|
946
949
|
interface FileTouchResult {
|
|
947
950
|
success: boolean;
|
|
948
951
|
error?: string;
|
|
949
952
|
}
|
|
950
|
-
declare const _default$
|
|
953
|
+
declare const _default$3r: TaskFn<FileTouchParams, FileTouchResult>;
|
|
951
954
|
|
|
952
955
|
interface FileDeleteParams {
|
|
953
956
|
path: string;
|
|
954
957
|
recursive?: boolean;
|
|
955
958
|
force?: boolean;
|
|
959
|
+
sudo?: boolean;
|
|
956
960
|
}
|
|
957
961
|
interface FileDeleteResult {
|
|
958
962
|
success: boolean;
|
|
959
963
|
error?: string;
|
|
960
964
|
}
|
|
961
|
-
declare const _default$
|
|
965
|
+
declare const _default$3q: TaskFn<FileDeleteParams, FileDeleteResult>;
|
|
962
966
|
|
|
963
967
|
interface FileLinkParams {
|
|
964
968
|
/** Path the symlink should point TO (target). */
|
|
@@ -975,7 +979,7 @@ interface FileLinkResult {
|
|
|
975
979
|
success: boolean;
|
|
976
980
|
error?: string;
|
|
977
981
|
}
|
|
978
|
-
declare const _default$
|
|
982
|
+
declare const _default$3p: TaskFn<FileLinkParams, FileLinkResult>;
|
|
979
983
|
|
|
980
984
|
interface FileEditParams {
|
|
981
985
|
file: string;
|
|
@@ -996,7 +1000,7 @@ interface FileEditResult {
|
|
|
996
1000
|
success: boolean;
|
|
997
1001
|
error?: string;
|
|
998
1002
|
}
|
|
999
|
-
declare const _default$
|
|
1003
|
+
declare const _default$3o: TaskFn<FileEditParams, FileEditResult>;
|
|
1000
1004
|
|
|
1001
1005
|
interface FileGrepParams {
|
|
1002
1006
|
/** Path to the file to search */
|
|
@@ -1023,6 +1027,8 @@ interface FileGrepParams {
|
|
|
1023
1027
|
max_count?: number;
|
|
1024
1028
|
/** Return the matching lines in the result payload. Default: false */
|
|
1025
1029
|
return_lines?: boolean;
|
|
1030
|
+
/** Run commands via sudo */
|
|
1031
|
+
sudo?: boolean;
|
|
1026
1032
|
}
|
|
1027
1033
|
interface FileGrepResult {
|
|
1028
1034
|
/** True if one or more matches were found */
|
|
@@ -1036,7 +1042,7 @@ interface FileGrepResult {
|
|
|
1036
1042
|
/** Error message if operation failed */
|
|
1037
1043
|
error?: string;
|
|
1038
1044
|
}
|
|
1039
|
-
declare const _default$
|
|
1045
|
+
declare const _default$3n: TaskFn<FileGrepParams, FileGrepResult>;
|
|
1040
1046
|
|
|
1041
1047
|
type file_ChgrpParams = ChgrpParams;
|
|
1042
1048
|
type file_ChgrpResult = ChgrpResult;
|
|
@@ -1059,7 +1065,7 @@ type file_FileLinkResult = FileLinkResult;
|
|
|
1059
1065
|
type file_FileTouchParams = FileTouchParams;
|
|
1060
1066
|
type file_FileTouchResult = FileTouchResult;
|
|
1061
1067
|
declare namespace file {
|
|
1062
|
-
export { type file_ChgrpParams as ChgrpParams, type file_ChgrpResult as ChgrpResult, type file_ChmodParams as ChmodParams, type file_ChmodResult as ChmodResult, type file_ChownParams as ChownParams, type file_ChownResult as ChownResult, type file_FileCopyParams as FileCopyParams, type file_FileCopyResult as FileCopyResult, type file_FileDeleteParams as FileDeleteParams, type file_FileDeleteResult as FileDeleteResult, type file_FileEditParams as FileEditParams, type file_FileEditResult as FileEditResult, type file_FileExistsParams as FileExistsParams, type file_FileExistsResult as FileExistsResult, type file_FileGrepParams as FileGrepParams, type file_FileGrepResult as FileGrepResult, type file_FileLinkParams as FileLinkParams, type file_FileLinkResult as FileLinkResult, type file_FileTouchParams as FileTouchParams, type file_FileTouchResult as FileTouchResult, _default$
|
|
1068
|
+
export { type file_ChgrpParams as ChgrpParams, type file_ChgrpResult as ChgrpResult, type file_ChmodParams as ChmodParams, type file_ChmodResult as ChmodResult, type file_ChownParams as ChownParams, type file_ChownResult as ChownResult, type file_FileCopyParams as FileCopyParams, type file_FileCopyResult as FileCopyResult, type file_FileDeleteParams as FileDeleteParams, type file_FileDeleteResult as FileDeleteResult, type file_FileEditParams as FileEditParams, type file_FileEditResult as FileEditResult, type file_FileExistsParams as FileExistsParams, type file_FileExistsResult as FileExistsResult, type file_FileGrepParams as FileGrepParams, type file_FileGrepResult as FileGrepResult, type file_FileLinkParams as FileLinkParams, type file_FileLinkResult as FileLinkResult, type file_FileTouchParams as FileTouchParams, type file_FileTouchResult as FileTouchResult, _default$3v as chgrp, _default$3u as chmod, _default$3w as chown, _default$3t as copy, _default$3q as delete, _default$3o as edit, _default$3s as exists, _default$3n as grep, _default$3p as link, _default$3r as touch };
|
|
1063
1069
|
}
|
|
1064
1070
|
|
|
1065
1071
|
interface GitCloneParams {
|
|
@@ -1070,7 +1076,7 @@ interface GitCloneResult {
|
|
|
1070
1076
|
success: boolean;
|
|
1071
1077
|
error?: string;
|
|
1072
1078
|
}
|
|
1073
|
-
declare const _default$
|
|
1079
|
+
declare const _default$3m: TaskFn<GitCloneParams, GitCloneResult>;
|
|
1074
1080
|
|
|
1075
1081
|
interface GitPullParams {
|
|
1076
1082
|
/** The directory of the git repository on the host. */
|
|
@@ -1088,7 +1094,7 @@ interface GitPullResult {
|
|
|
1088
1094
|
/** Error message if the pull operation failed. */
|
|
1089
1095
|
error?: string;
|
|
1090
1096
|
}
|
|
1091
|
-
declare const _default$
|
|
1097
|
+
declare const _default$3l: TaskFn<GitPullParams, GitPullResult>;
|
|
1092
1098
|
|
|
1093
1099
|
interface GitCheckoutParams {
|
|
1094
1100
|
/** The directory of the git repository on the host. */
|
|
@@ -1104,7 +1110,7 @@ interface GitCheckoutResult {
|
|
|
1104
1110
|
/** Error message if the checkout operation failed. */
|
|
1105
1111
|
error?: string;
|
|
1106
1112
|
}
|
|
1107
|
-
declare const _default$
|
|
1113
|
+
declare const _default$3k: TaskFn<GitCheckoutParams, GitCheckoutResult>;
|
|
1108
1114
|
|
|
1109
1115
|
type git_GitCheckoutParams = GitCheckoutParams;
|
|
1110
1116
|
type git_GitCheckoutResult = GitCheckoutResult;
|
|
@@ -1113,7 +1119,7 @@ type git_GitCloneResult = GitCloneResult;
|
|
|
1113
1119
|
type git_GitPullParams = GitPullParams;
|
|
1114
1120
|
type git_GitPullResult = GitPullResult;
|
|
1115
1121
|
declare namespace git {
|
|
1116
|
-
export { type git_GitCheckoutParams as GitCheckoutParams, type git_GitCheckoutResult as GitCheckoutResult, type git_GitCloneParams as GitCloneParams, type git_GitCloneResult as GitCloneResult, type git_GitPullParams as GitPullParams, type git_GitPullResult as GitPullResult, _default$
|
|
1122
|
+
export { type git_GitCheckoutParams as GitCheckoutParams, type git_GitCheckoutResult as GitCheckoutResult, type git_GitCloneParams as GitCloneParams, type git_GitCloneResult as GitCloneResult, type git_GitPullParams as GitPullParams, type git_GitPullResult as GitPullResult, _default$3k as checkout, _default$3m as clone, _default$3l as pull };
|
|
1117
1123
|
}
|
|
1118
1124
|
|
|
1119
1125
|
interface GroupCreateParams {
|
|
@@ -1125,7 +1131,7 @@ interface GroupCreateResult {
|
|
|
1125
1131
|
success: boolean;
|
|
1126
1132
|
error?: string;
|
|
1127
1133
|
}
|
|
1128
|
-
declare const _default$
|
|
1134
|
+
declare const _default$3j: TaskFn<GroupCreateParams, GroupCreateResult>;
|
|
1129
1135
|
|
|
1130
1136
|
interface GroupDeleteParams {
|
|
1131
1137
|
group: string;
|
|
@@ -1136,7 +1142,7 @@ interface GroupDeleteResult {
|
|
|
1136
1142
|
success: boolean;
|
|
1137
1143
|
error?: string;
|
|
1138
1144
|
}
|
|
1139
|
-
declare const _default$
|
|
1145
|
+
declare const _default$3i: TaskFn<GroupDeleteParams, GroupDeleteResult>;
|
|
1140
1146
|
|
|
1141
1147
|
interface GroupExistsParams {
|
|
1142
1148
|
group: string;
|
|
@@ -1144,7 +1150,7 @@ interface GroupExistsParams {
|
|
|
1144
1150
|
interface GroupExistsResult {
|
|
1145
1151
|
exists: boolean;
|
|
1146
1152
|
}
|
|
1147
|
-
declare const _default$
|
|
1153
|
+
declare const _default$3h: TaskFn<GroupExistsParams, GroupExistsResult>;
|
|
1148
1154
|
|
|
1149
1155
|
interface GroupInfo {
|
|
1150
1156
|
name: string;
|
|
@@ -1157,7 +1163,7 @@ interface GroupListResult {
|
|
|
1157
1163
|
error?: string;
|
|
1158
1164
|
groups: GroupInfo[];
|
|
1159
1165
|
}
|
|
1160
|
-
declare const _default$
|
|
1166
|
+
declare const _default$3g: TaskFn<GroupListParams, GroupListResult>;
|
|
1161
1167
|
|
|
1162
1168
|
interface GroupModifyParams {
|
|
1163
1169
|
/** The current name of the group. */
|
|
@@ -1174,7 +1180,7 @@ interface GroupModifyResult {
|
|
|
1174
1180
|
changed: boolean;
|
|
1175
1181
|
error?: string;
|
|
1176
1182
|
}
|
|
1177
|
-
declare const _default$
|
|
1183
|
+
declare const _default$3f: TaskFn<GroupModifyParams, GroupModifyResult>;
|
|
1178
1184
|
|
|
1179
1185
|
type group_GroupCreateParams = GroupCreateParams;
|
|
1180
1186
|
type group_GroupCreateResult = GroupCreateResult;
|
|
@@ -1188,7 +1194,7 @@ type group_GroupListResult = GroupListResult;
|
|
|
1188
1194
|
type group_GroupModifyParams = GroupModifyParams;
|
|
1189
1195
|
type group_GroupModifyResult = GroupModifyResult;
|
|
1190
1196
|
declare namespace group {
|
|
1191
|
-
export { type group_GroupCreateParams as GroupCreateParams, type group_GroupCreateResult as GroupCreateResult, type group_GroupDeleteParams as GroupDeleteParams, type group_GroupDeleteResult as GroupDeleteResult, type group_GroupExistsParams as GroupExistsParams, type group_GroupExistsResult as GroupExistsResult, type group_GroupInfo as GroupInfo, type group_GroupListParams as GroupListParams, type group_GroupListResult as GroupListResult, type group_GroupModifyParams as GroupModifyParams, type group_GroupModifyResult as GroupModifyResult, _default$
|
|
1197
|
+
export { type group_GroupCreateParams as GroupCreateParams, type group_GroupCreateResult as GroupCreateResult, type group_GroupDeleteParams as GroupDeleteParams, type group_GroupDeleteResult as GroupDeleteResult, type group_GroupExistsParams as GroupExistsParams, type group_GroupExistsResult as GroupExistsResult, type group_GroupInfo as GroupInfo, type group_GroupListParams as GroupListParams, type group_GroupListResult as GroupListResult, type group_GroupModifyParams as GroupModifyParams, type group_GroupModifyResult as GroupModifyResult, _default$3j as create, _default$3i as delete, _default$3h as exists, _default$3g as list, _default$3f as modify };
|
|
1192
1198
|
}
|
|
1193
1199
|
|
|
1194
1200
|
interface OSInfo {
|
|
@@ -1225,12 +1231,12 @@ interface HostInfoResult {
|
|
|
1225
1231
|
success: boolean;
|
|
1226
1232
|
error?: string;
|
|
1227
1233
|
}
|
|
1228
|
-
declare const _default$
|
|
1234
|
+
declare const _default$3e: TaskFn<ObjectType, HostInfoResult>;
|
|
1229
1235
|
|
|
1230
1236
|
interface HostSummaryResult {
|
|
1231
1237
|
host: HostSummary;
|
|
1232
1238
|
}
|
|
1233
|
-
declare const _default$
|
|
1239
|
+
declare const _default$3d: TaskFn<ObjectType, HostSummaryResult>;
|
|
1234
1240
|
|
|
1235
1241
|
interface OsDetailsResult {
|
|
1236
1242
|
success: boolean;
|
|
@@ -1247,7 +1253,7 @@ interface OsDetailsResult {
|
|
|
1247
1253
|
* Determines the operating system family, specific OS, variant, and version.
|
|
1248
1254
|
* @returns {OsDetailsResult}
|
|
1249
1255
|
*/
|
|
1250
|
-
declare const _default$
|
|
1256
|
+
declare const _default$3c: TaskFn<ObjectType, OsDetailsResult>;
|
|
1251
1257
|
|
|
1252
1258
|
interface HostnameParams {
|
|
1253
1259
|
new_name?: string;
|
|
@@ -1258,7 +1264,7 @@ interface HostnameResult {
|
|
|
1258
1264
|
success: boolean;
|
|
1259
1265
|
error?: string;
|
|
1260
1266
|
}
|
|
1261
|
-
declare const _default$
|
|
1267
|
+
declare const _default$3b: TaskFn<HostnameParams, HostnameResult>;
|
|
1262
1268
|
|
|
1263
1269
|
type host_HostInfo = HostInfo;
|
|
1264
1270
|
type host_HostInfoResult = HostInfoResult;
|
|
@@ -1271,7 +1277,7 @@ type host_LSCPUChild = LSCPUChild;
|
|
|
1271
1277
|
type host_OSInfo = OSInfo;
|
|
1272
1278
|
type host_OsDetailsResult = OsDetailsResult;
|
|
1273
1279
|
declare namespace host {
|
|
1274
|
-
export { type host_HostInfo as HostInfo, type host_HostInfoResult as HostInfoResult, type host_HostSummary as HostSummary, type host_HostSummaryResult as HostSummaryResult, type host_HostnameParams as HostnameParams, type host_HostnameResult as HostnameResult, type host_LSBRelease as LSBRelease, type host_LSCPUChild as LSCPUChild, type host_OSInfo as OSInfo, type host_OsDetailsResult as OsDetailsResult, _default$
|
|
1280
|
+
export { type host_HostInfo as HostInfo, type host_HostInfoResult as HostInfoResult, type host_HostSummary as HostSummary, type host_HostSummaryResult as HostSummaryResult, type host_HostnameParams as HostnameParams, type host_HostnameResult as HostnameResult, type host_LSBRelease as LSBRelease, type host_LSCPUChild as LSCPUChild, type host_OSInfo as OSInfo, type host_OsDetailsResult as OsDetailsResult, _default$3b as hostname, _default$3e as info, _default$3c as os, _default$3d as summary };
|
|
1275
1281
|
}
|
|
1276
1282
|
|
|
1277
1283
|
interface AbstractPkgParams {
|
|
@@ -1319,13 +1325,13 @@ interface AbstractPkgInstallParams extends AbstractPkgParams {
|
|
|
1319
1325
|
}
|
|
1320
1326
|
interface AbstractPkgInstallResult extends AbstractPkgResult {
|
|
1321
1327
|
}
|
|
1322
|
-
declare const _default$
|
|
1328
|
+
declare const _default$3a: TaskFn<AbstractPkgInstallParams, AbstractPkgInstallResult>;
|
|
1323
1329
|
|
|
1324
1330
|
interface AbstractPkgUninstallParams extends AbstractPkgParams {
|
|
1325
1331
|
}
|
|
1326
1332
|
interface AbstractPkgUninstallResult extends AbstractPkgResult {
|
|
1327
1333
|
}
|
|
1328
|
-
declare const _default$
|
|
1334
|
+
declare const _default$39: TaskFn<AbstractPkgUninstallParams, AbstractPkgUninstallResult>;
|
|
1329
1335
|
|
|
1330
1336
|
interface AbstractPkgUpdateParams {
|
|
1331
1337
|
/** Run commands with sudo (default true) */
|
|
@@ -1337,7 +1343,7 @@ interface AbstractPkgUpdateParams {
|
|
|
1337
1343
|
}
|
|
1338
1344
|
interface AbstractPkgUpdateResult extends AbstractPkgResult {
|
|
1339
1345
|
}
|
|
1340
|
-
declare const _default$
|
|
1346
|
+
declare const _default$38: TaskFn<AbstractPkgUpdateParams, AbstractPkgUpdateResult>;
|
|
1341
1347
|
|
|
1342
1348
|
interface PkgInfoParams {
|
|
1343
1349
|
package: string;
|
|
@@ -1347,7 +1353,7 @@ interface PkgInfoResult {
|
|
|
1347
1353
|
success: boolean;
|
|
1348
1354
|
error?: string;
|
|
1349
1355
|
}
|
|
1350
|
-
declare const _default$
|
|
1356
|
+
declare const _default$37: TaskFn<PkgInfoParams, PkgInfoResult>;
|
|
1351
1357
|
|
|
1352
1358
|
interface BasePkgParams {
|
|
1353
1359
|
/** Package name or array of package names */
|
|
@@ -1388,13 +1394,13 @@ interface PkgIsInstalledResult {
|
|
|
1388
1394
|
error?: string;
|
|
1389
1395
|
}
|
|
1390
1396
|
|
|
1391
|
-
declare const _default$
|
|
1397
|
+
declare const _default$36: TaskFn<PkgIsInstalledParams, PkgIsInstalledResult>;
|
|
1392
1398
|
|
|
1393
1399
|
declare const install: TaskFn<PkgInstallParams, PkgInstallResult>;
|
|
1394
1400
|
|
|
1395
|
-
declare const _default$
|
|
1401
|
+
declare const _default$35: TaskFn<PkgRemoveParams, PkgRemoveResult>;
|
|
1396
1402
|
|
|
1397
|
-
declare const _default$
|
|
1403
|
+
declare const _default$34: TaskFn<PkgUpdateParams, PkgUpdateResult>;
|
|
1398
1404
|
|
|
1399
1405
|
interface AbstractPkgUpgradeParams {
|
|
1400
1406
|
/** Run commands with sudo (default true) */
|
|
@@ -1406,7 +1412,7 @@ interface AbstractPkgUpgradeParams {
|
|
|
1406
1412
|
}
|
|
1407
1413
|
interface AbstractPkgUpgradeResult extends AbstractPkgResult {
|
|
1408
1414
|
}
|
|
1409
|
-
declare const _default$
|
|
1415
|
+
declare const _default$33: TaskFn<AbstractPkgUpgradeParams, AbstractPkgUpgradeResult>;
|
|
1410
1416
|
|
|
1411
1417
|
interface AbstractPkgSearchParams {
|
|
1412
1418
|
/** Search query */
|
|
@@ -1416,7 +1422,7 @@ interface AbstractPkgSearchParams {
|
|
|
1416
1422
|
}
|
|
1417
1423
|
interface AbstractPkgSearchResult extends AbstractPkgResult {
|
|
1418
1424
|
}
|
|
1419
|
-
declare const _default$
|
|
1425
|
+
declare const _default$32: TaskFn<AbstractPkgSearchParams, AbstractPkgSearchResult>;
|
|
1420
1426
|
|
|
1421
1427
|
interface AbstractPkgListParams {
|
|
1422
1428
|
/** Force use of specific package manager (auto-detect if not specified) */
|
|
@@ -1424,9 +1430,9 @@ interface AbstractPkgListParams {
|
|
|
1424
1430
|
}
|
|
1425
1431
|
interface AbstractPkgListResult extends AbstractPkgResult {
|
|
1426
1432
|
}
|
|
1427
|
-
declare const _default$
|
|
1433
|
+
declare const _default$31: TaskFn<AbstractPkgListParams, AbstractPkgListResult>;
|
|
1428
1434
|
|
|
1429
|
-
declare const _default$
|
|
1435
|
+
declare const _default$30: TaskFn<AbstractPkgCleanParams, AbstractPkgCleanResult>;
|
|
1430
1436
|
|
|
1431
1437
|
interface AptBaseParams extends AbstractPkgParams {
|
|
1432
1438
|
/** Force use of apt package manager (always true for apt-specific tasks) */
|
|
@@ -1612,27 +1618,27 @@ interface AptAddRepositoryResult {
|
|
|
1612
1618
|
error?: string;
|
|
1613
1619
|
}
|
|
1614
1620
|
|
|
1615
|
-
declare const _default$
|
|
1621
|
+
declare const _default$2$: TaskFn<AptInstallParams, AptInstallResult>;
|
|
1616
1622
|
|
|
1617
|
-
declare const _default$
|
|
1623
|
+
declare const _default$2_: TaskFn<AptUninstallParams, AptUninstallResult>;
|
|
1618
1624
|
|
|
1619
|
-
declare const _default$
|
|
1625
|
+
declare const _default$2Z: TaskFn<AptUpdateParams, AptUpdateResult>;
|
|
1620
1626
|
|
|
1621
|
-
declare const _default$
|
|
1627
|
+
declare const _default$2Y: TaskFn<AptUpgradeParams, AptUpgradeResult>;
|
|
1622
1628
|
|
|
1623
|
-
declare const _default$
|
|
1629
|
+
declare const _default$2X: TaskFn<AptSearchParams, AptSearchResult>;
|
|
1624
1630
|
|
|
1625
|
-
declare const _default$
|
|
1631
|
+
declare const _default$2W: TaskFn<AptListParams, AptListResult>;
|
|
1626
1632
|
|
|
1627
|
-
declare const _default$
|
|
1633
|
+
declare const _default$2V: TaskFn<AptCleanParams, AptCleanResult>;
|
|
1628
1634
|
|
|
1629
|
-
declare const _default$
|
|
1635
|
+
declare const _default$2U: TaskFn<AptIsInstalledParams, AptIsInstalledResult>;
|
|
1630
1636
|
|
|
1631
|
-
declare const _default$
|
|
1637
|
+
declare const _default$2T: TaskFn<AptInfoParams, AptInfoResult>;
|
|
1632
1638
|
|
|
1633
|
-
declare const _default$
|
|
1639
|
+
declare const _default$2S: TaskFn<AptAddKeyParams, AptAddKeyResult>;
|
|
1634
1640
|
|
|
1635
|
-
declare const _default$
|
|
1641
|
+
declare const _default$2R: TaskFn<AptAddRepositoryParams, AptAddRepositoryResult>;
|
|
1636
1642
|
|
|
1637
1643
|
type index$3_AptAddKeyParams = AptAddKeyParams;
|
|
1638
1644
|
type index$3_AptAddKeyResult = AptAddKeyResult;
|
|
@@ -1657,7 +1663,7 @@ type index$3_AptUpdateResult = AptUpdateResult;
|
|
|
1657
1663
|
type index$3_AptUpgradeParams = AptUpgradeParams;
|
|
1658
1664
|
type index$3_AptUpgradeResult = AptUpgradeResult;
|
|
1659
1665
|
declare namespace index$3 {
|
|
1660
|
-
export { type index$3_AptAddKeyParams as AptAddKeyParams, type index$3_AptAddKeyResult as AptAddKeyResult, type index$3_AptAddRepositoryParams as AptAddRepositoryParams, type index$3_AptAddRepositoryResult as AptAddRepositoryResult, type index$3_AptCleanParams as AptCleanParams, type index$3_AptCleanResult as AptCleanResult, type index$3_AptInfoParams as AptInfoParams, type index$3_AptInfoResult as AptInfoResult, type index$3_AptInstallParams as AptInstallParams, type index$3_AptInstallResult as AptInstallResult, type index$3_AptIsInstalledParams as AptIsInstalledParams, type index$3_AptIsInstalledResult as AptIsInstalledResult, type index$3_AptListParams as AptListParams, type index$3_AptListResult as AptListResult, type index$3_AptSearchParams as AptSearchParams, type index$3_AptSearchResult as AptSearchResult, type index$3_AptUninstallParams as AptUninstallParams, type index$3_AptUninstallResult as AptUninstallResult, type index$3_AptUpdateParams as AptUpdateParams, type index$3_AptUpdateResult as AptUpdateResult, type index$3_AptUpgradeParams as AptUpgradeParams, type index$3_AptUpgradeResult as AptUpgradeResult, _default$
|
|
1666
|
+
export { type index$3_AptAddKeyParams as AptAddKeyParams, type index$3_AptAddKeyResult as AptAddKeyResult, type index$3_AptAddRepositoryParams as AptAddRepositoryParams, type index$3_AptAddRepositoryResult as AptAddRepositoryResult, type index$3_AptCleanParams as AptCleanParams, type index$3_AptCleanResult as AptCleanResult, type index$3_AptInfoParams as AptInfoParams, type index$3_AptInfoResult as AptInfoResult, type index$3_AptInstallParams as AptInstallParams, type index$3_AptInstallResult as AptInstallResult, type index$3_AptIsInstalledParams as AptIsInstalledParams, type index$3_AptIsInstalledResult as AptIsInstalledResult, type index$3_AptListParams as AptListParams, type index$3_AptListResult as AptListResult, type index$3_AptSearchParams as AptSearchParams, type index$3_AptSearchResult as AptSearchResult, type index$3_AptUninstallParams as AptUninstallParams, type index$3_AptUninstallResult as AptUninstallResult, type index$3_AptUpdateParams as AptUpdateParams, type index$3_AptUpdateResult as AptUpdateResult, type index$3_AptUpgradeParams as AptUpgradeParams, type index$3_AptUpgradeResult as AptUpgradeResult, _default$2S as add_key, _default$2R as add_repository, _default$2V as clean, _default$2T as info, _default$2$ as install, _default$2U as isInstalled, _default$2W as list, _default$2X as search, _default$2_ as uninstall, _default$2Z as update, _default$2Y as upgrade };
|
|
1661
1667
|
}
|
|
1662
1668
|
|
|
1663
1669
|
interface DnfBaseParams extends AbstractPkgParams {
|
|
@@ -1830,23 +1836,23 @@ interface DnfInfoResult extends AbstractPkgResult {
|
|
|
1830
1836
|
installed?: boolean;
|
|
1831
1837
|
}
|
|
1832
1838
|
|
|
1833
|
-
declare const _default$
|
|
1839
|
+
declare const _default$2Q: TaskFn<DnfInstallParams, DnfInstallResult>;
|
|
1834
1840
|
|
|
1835
|
-
declare const _default$
|
|
1841
|
+
declare const _default$2P: TaskFn<DnfUninstallParams, DnfUninstallResult>;
|
|
1836
1842
|
|
|
1837
|
-
declare const _default$
|
|
1843
|
+
declare const _default$2O: TaskFn<DnfUpdateParams, DnfUpdateResult>;
|
|
1838
1844
|
|
|
1839
|
-
declare const _default$
|
|
1845
|
+
declare const _default$2N: TaskFn<DnfUpgradeParams, DnfUpgradeResult>;
|
|
1840
1846
|
|
|
1841
|
-
declare const _default$
|
|
1847
|
+
declare const _default$2M: TaskFn<DnfSearchParams, DnfSearchResult>;
|
|
1842
1848
|
|
|
1843
|
-
declare const _default$
|
|
1849
|
+
declare const _default$2L: TaskFn<DnfListParams, DnfListResult>;
|
|
1844
1850
|
|
|
1845
|
-
declare const _default$
|
|
1851
|
+
declare const _default$2K: TaskFn<DnfCleanParams, DnfCleanResult>;
|
|
1846
1852
|
|
|
1847
|
-
declare const _default$
|
|
1853
|
+
declare const _default$2J: TaskFn<DnfIsInstalledParams, DnfIsInstalledResult>;
|
|
1848
1854
|
|
|
1849
|
-
declare const _default$
|
|
1855
|
+
declare const _default$2I: TaskFn<DnfInfoParams, DnfInfoResult>;
|
|
1850
1856
|
|
|
1851
1857
|
type index$2_DnfCleanParams = DnfCleanParams;
|
|
1852
1858
|
type index$2_DnfCleanResult = DnfCleanResult;
|
|
@@ -1867,7 +1873,7 @@ type index$2_DnfUpdateResult = DnfUpdateResult;
|
|
|
1867
1873
|
type index$2_DnfUpgradeParams = DnfUpgradeParams;
|
|
1868
1874
|
type index$2_DnfUpgradeResult = DnfUpgradeResult;
|
|
1869
1875
|
declare namespace index$2 {
|
|
1870
|
-
export { type index$2_DnfCleanParams as DnfCleanParams, type index$2_DnfCleanResult as DnfCleanResult, type index$2_DnfInfoParams as DnfInfoParams, type index$2_DnfInfoResult as DnfInfoResult, type index$2_DnfInstallParams as DnfInstallParams, type index$2_DnfInstallResult as DnfInstallResult, type index$2_DnfIsInstalledParams as DnfIsInstalledParams, type index$2_DnfIsInstalledResult as DnfIsInstalledResult, type index$2_DnfListParams as DnfListParams, type index$2_DnfListResult as DnfListResult, type index$2_DnfSearchParams as DnfSearchParams, type index$2_DnfSearchResult as DnfSearchResult, type index$2_DnfUninstallParams as DnfUninstallParams, type index$2_DnfUninstallResult as DnfUninstallResult, type index$2_DnfUpdateParams as DnfUpdateParams, type index$2_DnfUpdateResult as DnfUpdateResult, type index$2_DnfUpgradeParams as DnfUpgradeParams, type index$2_DnfUpgradeResult as DnfUpgradeResult, _default$
|
|
1876
|
+
export { type index$2_DnfCleanParams as DnfCleanParams, type index$2_DnfCleanResult as DnfCleanResult, type index$2_DnfInfoParams as DnfInfoParams, type index$2_DnfInfoResult as DnfInfoResult, type index$2_DnfInstallParams as DnfInstallParams, type index$2_DnfInstallResult as DnfInstallResult, type index$2_DnfIsInstalledParams as DnfIsInstalledParams, type index$2_DnfIsInstalledResult as DnfIsInstalledResult, type index$2_DnfListParams as DnfListParams, type index$2_DnfListResult as DnfListResult, type index$2_DnfSearchParams as DnfSearchParams, type index$2_DnfSearchResult as DnfSearchResult, type index$2_DnfUninstallParams as DnfUninstallParams, type index$2_DnfUninstallResult as DnfUninstallResult, type index$2_DnfUpdateParams as DnfUpdateParams, type index$2_DnfUpdateResult as DnfUpdateResult, type index$2_DnfUpgradeParams as DnfUpgradeParams, type index$2_DnfUpgradeResult as DnfUpgradeResult, _default$2K as clean, _default$2I as info, _default$2Q as install, _default$2J as isInstalled, _default$2L as list, _default$2M as search, _default$2P as uninstall, _default$2O as update, _default$2N as upgrade };
|
|
1871
1877
|
}
|
|
1872
1878
|
|
|
1873
1879
|
interface YumBaseParams extends AbstractPkgParams {
|
|
@@ -2032,17 +2038,17 @@ interface YumInfoResult extends AbstractPkgResult {
|
|
|
2032
2038
|
installed?: boolean;
|
|
2033
2039
|
}
|
|
2034
2040
|
|
|
2035
|
-
declare const _default$
|
|
2041
|
+
declare const _default$2H: TaskFn<YumInstallParams, YumInstallResult>;
|
|
2036
2042
|
|
|
2037
|
-
declare const _default$
|
|
2043
|
+
declare const _default$2G: TaskFn<YumUninstallParams, YumUninstallResult>;
|
|
2038
2044
|
|
|
2039
|
-
declare const _default$
|
|
2045
|
+
declare const _default$2F: TaskFn<YumUpdateParams, YumUpdateResult>;
|
|
2040
2046
|
|
|
2041
|
-
declare const _default$
|
|
2047
|
+
declare const _default$2E: TaskFn<YumUpgradeParams, YumUpgradeResult>;
|
|
2042
2048
|
|
|
2043
|
-
declare const _default$
|
|
2049
|
+
declare const _default$2D: TaskFn<YumSearchParams, YumSearchResult>;
|
|
2044
2050
|
|
|
2045
|
-
declare const _default$
|
|
2051
|
+
declare const _default$2C: TaskFn<{}, {
|
|
2046
2052
|
success: boolean;
|
|
2047
2053
|
packages: {
|
|
2048
2054
|
name: string;
|
|
@@ -2053,11 +2059,11 @@ declare const _default$2A: TaskFn<{}, {
|
|
|
2053
2059
|
error?: string;
|
|
2054
2060
|
}>;
|
|
2055
2061
|
|
|
2056
|
-
declare const _default$
|
|
2062
|
+
declare const _default$2B: TaskFn<YumCleanParams, YumCleanResult>;
|
|
2057
2063
|
|
|
2058
|
-
declare const _default$
|
|
2064
|
+
declare const _default$2A: TaskFn<YumIsInstalledParams, YumIsInstalledResult>;
|
|
2059
2065
|
|
|
2060
|
-
declare const _default$
|
|
2066
|
+
declare const _default$2z: TaskFn<YumInfoParams, YumInfoResult>;
|
|
2061
2067
|
|
|
2062
2068
|
type index$1_YumCleanParams = YumCleanParams;
|
|
2063
2069
|
type index$1_YumCleanResult = YumCleanResult;
|
|
@@ -2078,7 +2084,7 @@ type index$1_YumUpdateResult = YumUpdateResult;
|
|
|
2078
2084
|
type index$1_YumUpgradeParams = YumUpgradeParams;
|
|
2079
2085
|
type index$1_YumUpgradeResult = YumUpgradeResult;
|
|
2080
2086
|
declare namespace index$1 {
|
|
2081
|
-
export { type index$1_YumCleanParams as YumCleanParams, type index$1_YumCleanResult as YumCleanResult, type index$1_YumInfoParams as YumInfoParams, type index$1_YumInfoResult as YumInfoResult, type index$1_YumInstallParams as YumInstallParams, type index$1_YumInstallResult as YumInstallResult, type index$1_YumIsInstalledParams as YumIsInstalledParams, type index$1_YumIsInstalledResult as YumIsInstalledResult, type index$1_YumListParams as YumListParams, type index$1_YumListResult as YumListResult, type index$1_YumSearchParams as YumSearchParams, type index$1_YumSearchResult as YumSearchResult, type index$1_YumUninstallParams as YumUninstallParams, type index$1_YumUninstallResult as YumUninstallResult, type index$1_YumUpdateParams as YumUpdateParams, type index$1_YumUpdateResult as YumUpdateResult, type index$1_YumUpgradeParams as YumUpgradeParams, type index$1_YumUpgradeResult as YumUpgradeResult, _default$
|
|
2087
|
+
export { type index$1_YumCleanParams as YumCleanParams, type index$1_YumCleanResult as YumCleanResult, type index$1_YumInfoParams as YumInfoParams, type index$1_YumInfoResult as YumInfoResult, type index$1_YumInstallParams as YumInstallParams, type index$1_YumInstallResult as YumInstallResult, type index$1_YumIsInstalledParams as YumIsInstalledParams, type index$1_YumIsInstalledResult as YumIsInstalledResult, type index$1_YumListParams as YumListParams, type index$1_YumListResult as YumListResult, type index$1_YumSearchParams as YumSearchParams, type index$1_YumSearchResult as YumSearchResult, type index$1_YumUninstallParams as YumUninstallParams, type index$1_YumUninstallResult as YumUninstallResult, type index$1_YumUpdateParams as YumUpdateParams, type index$1_YumUpdateResult as YumUpdateResult, type index$1_YumUpgradeParams as YumUpgradeParams, type index$1_YumUpgradeResult as YumUpgradeResult, _default$2B as clean, _default$2z as info, _default$2H as install, _default$2A as isInstalled, _default$2C as list, _default$2D as search, _default$2G as uninstall, _default$2F as update, _default$2E as upgrade };
|
|
2082
2088
|
}
|
|
2083
2089
|
|
|
2084
2090
|
interface PacmanBaseParams extends AbstractPkgParams {
|
|
@@ -2246,23 +2252,23 @@ interface PacmanInfoResult extends AbstractPkgResult {
|
|
|
2246
2252
|
};
|
|
2247
2253
|
}
|
|
2248
2254
|
|
|
2249
|
-
declare const _default$
|
|
2255
|
+
declare const _default$2y: TaskFn<PacmanInstallParams, PacmanInstallResult>;
|
|
2250
2256
|
|
|
2251
|
-
declare const _default$
|
|
2257
|
+
declare const _default$2x: TaskFn<PacmanUninstallParams, PacmanUninstallResult>;
|
|
2252
2258
|
|
|
2253
|
-
declare const _default$
|
|
2259
|
+
declare const _default$2w: TaskFn<PacmanUpdateParams, PacmanUpdateResult>;
|
|
2254
2260
|
|
|
2255
|
-
declare const _default$
|
|
2261
|
+
declare const _default$2v: TaskFn<PacmanUpgradeParams, PacmanUpgradeResult>;
|
|
2256
2262
|
|
|
2257
|
-
declare const _default$
|
|
2263
|
+
declare const _default$2u: TaskFn<PacmanSearchParams, PacmanSearchResult>;
|
|
2258
2264
|
|
|
2259
|
-
declare const _default$
|
|
2265
|
+
declare const _default$2t: TaskFn<PacmanListParams, PacmanListResult>;
|
|
2260
2266
|
|
|
2261
|
-
declare const _default$
|
|
2267
|
+
declare const _default$2s: TaskFn<PacmanCleanParams, PacmanCleanResult>;
|
|
2262
2268
|
|
|
2263
|
-
declare const _default$
|
|
2269
|
+
declare const _default$2r: TaskFn<PacmanIsInstalledParams, PacmanIsInstalledResult>;
|
|
2264
2270
|
|
|
2265
|
-
declare const _default$
|
|
2271
|
+
declare const _default$2q: TaskFn<PacmanInfoParams, PacmanInfoResult>;
|
|
2266
2272
|
|
|
2267
2273
|
type index_PacmanCleanParams = PacmanCleanParams;
|
|
2268
2274
|
type index_PacmanCleanResult = PacmanCleanResult;
|
|
@@ -2283,7 +2289,7 @@ type index_PacmanUpdateResult = PacmanUpdateResult;
|
|
|
2283
2289
|
type index_PacmanUpgradeParams = PacmanUpgradeParams;
|
|
2284
2290
|
type index_PacmanUpgradeResult = PacmanUpgradeResult;
|
|
2285
2291
|
declare namespace index {
|
|
2286
|
-
export { type index_PacmanCleanParams as PacmanCleanParams, type index_PacmanCleanResult as PacmanCleanResult, type index_PacmanInfoParams as PacmanInfoParams, type index_PacmanInfoResult as PacmanInfoResult, type index_PacmanInstallParams as PacmanInstallParams, type index_PacmanInstallResult as PacmanInstallResult, type index_PacmanIsInstalledParams as PacmanIsInstalledParams, type index_PacmanIsInstalledResult as PacmanIsInstalledResult, type index_PacmanListParams as PacmanListParams, type index_PacmanListResult as PacmanListResult, type index_PacmanSearchParams as PacmanSearchParams, type index_PacmanSearchResult as PacmanSearchResult, type index_PacmanUninstallParams as PacmanUninstallParams, type index_PacmanUninstallResult as PacmanUninstallResult, type index_PacmanUpdateParams as PacmanUpdateParams, type index_PacmanUpdateResult as PacmanUpdateResult, type index_PacmanUpgradeParams as PacmanUpgradeParams, type index_PacmanUpgradeResult as PacmanUpgradeResult, _default$
|
|
2292
|
+
export { type index_PacmanCleanParams as PacmanCleanParams, type index_PacmanCleanResult as PacmanCleanResult, type index_PacmanInfoParams as PacmanInfoParams, type index_PacmanInfoResult as PacmanInfoResult, type index_PacmanInstallParams as PacmanInstallParams, type index_PacmanInstallResult as PacmanInstallResult, type index_PacmanIsInstalledParams as PacmanIsInstalledParams, type index_PacmanIsInstalledResult as PacmanIsInstalledResult, type index_PacmanListParams as PacmanListParams, type index_PacmanListResult as PacmanListResult, type index_PacmanSearchParams as PacmanSearchParams, type index_PacmanSearchResult as PacmanSearchResult, type index_PacmanUninstallParams as PacmanUninstallParams, type index_PacmanUninstallResult as PacmanUninstallResult, type index_PacmanUpdateParams as PacmanUpdateParams, type index_PacmanUpdateResult as PacmanUpdateResult, type index_PacmanUpgradeParams as PacmanUpgradeParams, type index_PacmanUpgradeResult as PacmanUpgradeResult, _default$2s as clean, _default$2q as info, _default$2y as install, _default$2r as isInstalled, _default$2t as list, _default$2u as search, _default$2x as uninstall, _default$2w as update, _default$2v as upgrade };
|
|
2287
2293
|
}
|
|
2288
2294
|
|
|
2289
2295
|
type pkg_AbstractPkgCleanParams = AbstractPkgCleanParams;
|
|
@@ -2313,7 +2319,7 @@ type pkg_PkgRemoveResult = PkgRemoveResult;
|
|
|
2313
2319
|
type pkg_PkgUpdateParams = PkgUpdateParams;
|
|
2314
2320
|
type pkg_PkgUpdateResult = PkgUpdateResult;
|
|
2315
2321
|
declare namespace pkg {
|
|
2316
|
-
export { type pkg_AbstractPkgCleanParams as AbstractPkgCleanParams, type pkg_AbstractPkgCleanResult as AbstractPkgCleanResult, type pkg_AbstractPkgInstallParams as AbstractPkgInstallParams, type pkg_AbstractPkgInstallResult as AbstractPkgInstallResult, type pkg_AbstractPkgListParams as AbstractPkgListParams, type pkg_AbstractPkgListResult as AbstractPkgListResult, type pkg_AbstractPkgParams as AbstractPkgParams, type pkg_AbstractPkgResult as AbstractPkgResult, type pkg_AbstractPkgSearchParams as AbstractPkgSearchParams, type pkg_AbstractPkgSearchResult as AbstractPkgSearchResult, type pkg_AbstractPkgUninstallParams as AbstractPkgUninstallParams, type pkg_AbstractPkgUninstallResult as AbstractPkgUninstallResult, type pkg_AbstractPkgUpdateParams as AbstractPkgUpdateParams, type pkg_AbstractPkgUpdateResult as AbstractPkgUpdateResult, type pkg_AbstractPkgUpgradeParams as AbstractPkgUpgradeParams, type pkg_AbstractPkgUpgradeResult as AbstractPkgUpgradeResult, type pkg_PkgInfoParams as PkgInfoParams, type pkg_PkgInfoResult as PkgInfoResult, type pkg_PkgInstallParams as PkgInstallParams, type pkg_PkgInstallResult as PkgInstallResult, type pkg_PkgIsInstalledParams as PkgIsInstalledParams, type pkg_PkgIsInstalledResult as PkgIsInstalledResult, type pkg_PkgRemoveParams as PkgRemoveParams, type pkg_PkgRemoveResult as PkgRemoveResult, type pkg_PkgUpdateParams as PkgUpdateParams, type pkg_PkgUpdateResult as PkgUpdateResult, index$3 as apt, _default$
|
|
2322
|
+
export { type pkg_AbstractPkgCleanParams as AbstractPkgCleanParams, type pkg_AbstractPkgCleanResult as AbstractPkgCleanResult, type pkg_AbstractPkgInstallParams as AbstractPkgInstallParams, type pkg_AbstractPkgInstallResult as AbstractPkgInstallResult, type pkg_AbstractPkgListParams as AbstractPkgListParams, type pkg_AbstractPkgListResult as AbstractPkgListResult, type pkg_AbstractPkgParams as AbstractPkgParams, type pkg_AbstractPkgResult as AbstractPkgResult, type pkg_AbstractPkgSearchParams as AbstractPkgSearchParams, type pkg_AbstractPkgSearchResult as AbstractPkgSearchResult, type pkg_AbstractPkgUninstallParams as AbstractPkgUninstallParams, type pkg_AbstractPkgUninstallResult as AbstractPkgUninstallResult, type pkg_AbstractPkgUpdateParams as AbstractPkgUpdateParams, type pkg_AbstractPkgUpdateResult as AbstractPkgUpdateResult, type pkg_AbstractPkgUpgradeParams as AbstractPkgUpgradeParams, type pkg_AbstractPkgUpgradeResult as AbstractPkgUpgradeResult, type pkg_PkgInfoParams as PkgInfoParams, type pkg_PkgInfoResult as PkgInfoResult, type pkg_PkgInstallParams as PkgInstallParams, type pkg_PkgInstallResult as PkgInstallResult, type pkg_PkgIsInstalledParams as PkgIsInstalledParams, type pkg_PkgIsInstalledResult as PkgIsInstalledResult, type pkg_PkgRemoveParams as PkgRemoveParams, type pkg_PkgRemoveResult as PkgRemoveResult, type pkg_PkgUpdateParams as PkgUpdateParams, type pkg_PkgUpdateResult as PkgUpdateResult, index$3 as apt, _default$30 as clean, index$2 as dnf, _default$37 as info, _default$3a as install, install as installCp, _default$36 as isInstalled, _default$31 as list, index as pacman, _default$39 as remove, _default$35 as removeCp, _default$32 as search, _default$38 as update, _default$34 as updateCp, _default$33 as upgrade, index$1 as yum };
|
|
2317
2323
|
}
|
|
2318
2324
|
|
|
2319
2325
|
interface K3supInstallParams {
|
|
@@ -2351,12 +2357,12 @@ interface K3supInstallResult {
|
|
|
2351
2357
|
/** The command that would be run if --print-command was used */
|
|
2352
2358
|
executedCommand?: string;
|
|
2353
2359
|
}
|
|
2354
|
-
declare const _default$
|
|
2360
|
+
declare const _default$2p: TaskFn<K3supInstallParams, K3supInstallResult>;
|
|
2355
2361
|
|
|
2356
2362
|
type k3s_K3supInstallParams = K3supInstallParams;
|
|
2357
2363
|
type k3s_K3supInstallResult = K3supInstallResult;
|
|
2358
2364
|
declare namespace k3s {
|
|
2359
|
-
export { type k3s_K3supInstallParams as K3supInstallParams, type k3s_K3supInstallResult as K3supInstallResult, _default$
|
|
2365
|
+
export { type k3s_K3supInstallParams as K3supInstallParams, type k3s_K3supInstallResult as K3supInstallResult, _default$2p as k3supInstall };
|
|
2360
2366
|
}
|
|
2361
2367
|
|
|
2362
2368
|
interface DockerInstallParams {
|
|
@@ -2370,7 +2376,7 @@ interface DockerInstallResult {
|
|
|
2370
2376
|
success: boolean;
|
|
2371
2377
|
error?: string;
|
|
2372
2378
|
}
|
|
2373
|
-
declare const _default$
|
|
2379
|
+
declare const _default$2o: TaskFn<DockerInstallParams, DockerInstallResult>;
|
|
2374
2380
|
|
|
2375
2381
|
interface AddUsersParams {
|
|
2376
2382
|
users: string[];
|
|
@@ -2379,7 +2385,7 @@ interface AddUsersResult {
|
|
|
2379
2385
|
success: boolean;
|
|
2380
2386
|
error?: string;
|
|
2381
2387
|
}
|
|
2382
|
-
declare const _default$
|
|
2388
|
+
declare const _default$2n: TaskFn<AddUsersParams, AddUsersResult>;
|
|
2383
2389
|
|
|
2384
2390
|
interface InstallComposeParams {
|
|
2385
2391
|
version?: string;
|
|
@@ -2389,16 +2395,69 @@ interface InstallComposeResult {
|
|
|
2389
2395
|
success: boolean;
|
|
2390
2396
|
error?: string;
|
|
2391
2397
|
}
|
|
2392
|
-
declare const _default$
|
|
2398
|
+
declare const _default$2m: TaskFn<InstallComposeParams, InstallComposeResult>;
|
|
2399
|
+
|
|
2400
|
+
interface DockerRunCommonParams {
|
|
2401
|
+
image: string;
|
|
2402
|
+
name?: string;
|
|
2403
|
+
env?: Record<string, string>;
|
|
2404
|
+
volumes?: string[];
|
|
2405
|
+
ports?: string[];
|
|
2406
|
+
labels?: Record<string, string>;
|
|
2407
|
+
workdir?: string;
|
|
2408
|
+
entrypoint?: string;
|
|
2409
|
+
network?: string;
|
|
2410
|
+
user?: string;
|
|
2411
|
+
privileged?: boolean;
|
|
2412
|
+
add_hosts?: string[];
|
|
2413
|
+
extra_args?: string[];
|
|
2414
|
+
command?: string | string[];
|
|
2415
|
+
args?: string[];
|
|
2416
|
+
restart?: string;
|
|
2417
|
+
pull?: 'always' | 'missing' | 'never';
|
|
2418
|
+
gpus?: string;
|
|
2419
|
+
sudo?: boolean;
|
|
2420
|
+
cwd?: string;
|
|
2421
|
+
}
|
|
2422
|
+
|
|
2423
|
+
interface DockerRunContainerParams extends DockerRunCommonParams {
|
|
2424
|
+
remove?: boolean;
|
|
2425
|
+
}
|
|
2426
|
+
interface DockerRunContainerResult {
|
|
2427
|
+
success: boolean;
|
|
2428
|
+
exitCode: number;
|
|
2429
|
+
stdout: string;
|
|
2430
|
+
stderr: string;
|
|
2431
|
+
containerId?: string;
|
|
2432
|
+
containerName?: string;
|
|
2433
|
+
error?: string;
|
|
2434
|
+
}
|
|
2435
|
+
declare const _default$2l: TaskFn<DockerRunContainerParams, DockerRunContainerResult>;
|
|
2436
|
+
|
|
2437
|
+
interface DockerRunDetachedParams extends DockerRunCommonParams {
|
|
2438
|
+
}
|
|
2439
|
+
interface DockerRunDetachedResult {
|
|
2440
|
+
success: boolean;
|
|
2441
|
+
stdout: string;
|
|
2442
|
+
stderr: string;
|
|
2443
|
+
containerId?: string;
|
|
2444
|
+
containerName?: string;
|
|
2445
|
+
error?: string;
|
|
2446
|
+
}
|
|
2447
|
+
declare const _default$2k: TaskFn<DockerRunDetachedParams, DockerRunDetachedResult>;
|
|
2393
2448
|
|
|
2394
2449
|
type docker_AddUsersParams = AddUsersParams;
|
|
2395
2450
|
type docker_AddUsersResult = AddUsersResult;
|
|
2396
2451
|
type docker_DockerInstallParams = DockerInstallParams;
|
|
2397
2452
|
type docker_DockerInstallResult = DockerInstallResult;
|
|
2453
|
+
type docker_DockerRunContainerParams = DockerRunContainerParams;
|
|
2454
|
+
type docker_DockerRunContainerResult = DockerRunContainerResult;
|
|
2455
|
+
type docker_DockerRunDetachedParams = DockerRunDetachedParams;
|
|
2456
|
+
type docker_DockerRunDetachedResult = DockerRunDetachedResult;
|
|
2398
2457
|
type docker_InstallComposeParams = InstallComposeParams;
|
|
2399
2458
|
type docker_InstallComposeResult = InstallComposeResult;
|
|
2400
2459
|
declare namespace docker {
|
|
2401
|
-
export { type docker_AddUsersParams as AddUsersParams, type docker_AddUsersResult as AddUsersResult, type docker_DockerInstallParams as DockerInstallParams, type docker_DockerInstallResult as DockerInstallResult, type docker_InstallComposeParams as InstallComposeParams, type docker_InstallComposeResult as InstallComposeResult, _default$
|
|
2460
|
+
export { type docker_AddUsersParams as AddUsersParams, type docker_AddUsersResult as AddUsersResult, type docker_DockerInstallParams as DockerInstallParams, type docker_DockerInstallResult as DockerInstallResult, type docker_DockerRunContainerParams as DockerRunContainerParams, type docker_DockerRunContainerResult as DockerRunContainerResult, type docker_DockerRunDetachedParams as DockerRunDetachedParams, type docker_DockerRunDetachedResult as DockerRunDetachedResult, type docker_InstallComposeParams as InstallComposeParams, type docker_InstallComposeResult as InstallComposeResult, _default$2n as addUsers, _default$2o as install, _default$2m as installCompose, _default$2l as runContainer, _default$2k as runContainerDetached };
|
|
2402
2461
|
}
|
|
2403
2462
|
|
|
2404
2463
|
interface CopyIdParams {
|
|
@@ -5516,4 +5575,4 @@ declare class RemoteRuntime implements IRuntime {
|
|
|
5516
5575
|
invokeRootTask<TParams extends TaskParams, TReturn extends RunFnReturnValue>(taskFnDefinition: TaskFn<TParams, TReturn>, params: TParams): Promise<IInvocation>;
|
|
5517
5576
|
}
|
|
5518
5577
|
|
|
5519
|
-
export { type AddUsersParams, type AddUsersResult, App, CHECKMARK, type ChgrpParams, type ChgrpResult, type ChmodParams, type ChmodResult, type ChownParams, type ChownResult, Cli, CommandResult, type DockerInstallParams, type DockerInstallResult, type EnvVarObj, type ExecuteResult, type FileSystemOperations$1 as FileSystemOperations, Host, type IInvocation, type IRuntime, type InputMap, type InstallComposeParams, type InstallComposeResult, Invocation, LocalRuntime, type LogLevel, type ObjectType, type OsDetailsResult, type PkgInfoParams, type PkgInfoResult, type PkgInstallParams, type PkgInstallResult, type PkgIsInstalledParams, type PkgIsInstalledResult, type PkgRemoveParams, type PkgRemoveResult, type PkgUpdateParams, type PkgUpdateResult, type RebootIfNeededParams, type RebootIfNeededResult, type RebootNeededParams, type RebootNeededResult, type RebootParams, type RebootResult, RemoteRuntime, type RunFn, type RunFnReturnValue, SUDO_PROMPT_REGEX, type ShutdownParams, type ShutdownResult, Task, type TaskContext, type TaskFn, type TaskParams, type TaskPartialFn, Verbosity, XMARK, type XcpngAddDiskParams, type XcpngAddDiskResult, type XcpngAttachIsoParams, type XcpngAttachIsoResult, type XcpngAttachNetworkInterfaceParams, type XcpngAttachNetworkInterfaceResult, type XcpngAttachVdiParams, type XcpngAttachVdiResult, type XcpngAttachedDisk, type XcpngCleanupConfigDriveParams, type XcpngCleanupConfigDriveResult, type XcpngCleanupConfigDriveStep, type XcpngClearMessagesParams, type XcpngClearMessagesResult, type XcpngCloneTemplateParams, type XcpngCloneTemplateResult, type XcpngConvertTemplateToVmParams, type XcpngConvertTemplateToVmResult, type XcpngCopyVdiParams, type XcpngCopyVdiResult, type XcpngCreateBondParams, type XcpngCreateBondResult, type XcpngCreateConfigDriveParams, type XcpngCreateConfigDriveResult, type XcpngCreateConfigDriveStep, type XcpngCreatePbdParams, type XcpngCreatePbdResult, type XcpngCreateSrParams, type XcpngCreateSrResult, type XcpngCreateTemplateFromVdiParams, type XcpngCreateTemplateFromVdiResult, type XcpngCreateTemplateFromVdiStep, type XcpngCreateTemplateParams, type XcpngCreateTemplateResult, type XcpngCreateVdiParams, type XcpngCreateVdiResult, type XcpngCreateVmParams, type XcpngCreateVmResult, type XcpngDestroyBondParams, type XcpngDestroyBondResult, type XcpngDestroyIsoSrParams, type XcpngDestroyIsoSrResult, type XcpngDestroyPbdParams, type XcpngDestroyPbdResult, type XcpngDestroySnapshotParams, type XcpngDestroySnapshotResult, type XcpngDestroySrParams, type XcpngDestroySrResult, type XcpngDestroyTemplateParams, type XcpngDestroyTemplateResult, type XcpngDestroyVdiParams, type XcpngDestroyVdiResult, type XcpngDestroyVmParams, type XcpngDestroyVmResult, type XcpngDetachCdMediaParams, type XcpngDetachCdMediaResult, type XcpngDetachCdMediaStep, type XcpngDetachIsoParams, type XcpngDetachIsoResult, type XcpngDetachNetworkInterfaceParams, type XcpngDetachNetworkInterfaceResult, type XcpngDetachVdiParams, type XcpngDetachVdiResult, type XcpngDisableHostParams, type XcpngDisableHostResult, type XcpngEnableHostParams, type XcpngEnableHostResult, type XcpngExportVdiParams, type XcpngExportVdiResult, type XcpngFindHostParams, type XcpngFindHostResult, type XcpngFindNetworkParams, type XcpngFindNetworkResult, type XcpngFindOrCreateIsoSrParams, type XcpngFindOrCreateIsoSrResult, type XcpngFindPbdParams, type XcpngFindPbdResult, type XcpngFindPoolParams, type XcpngFindPoolResult, type XcpngFindStorageRepositoryParams, type XcpngFindStorageRepositoryResult, type XcpngFindTemplateParams, type XcpngFindTemplateResult, type XcpngFindVdiParams, type XcpngFindVdiResult, type XcpngFindVmParams, type XcpngFindVmResult, type XcpngForgetSrParams, type XcpngForgetSrResult, type XcpngGetVmInfoParams, type XcpngGetVmInfoResult, type XcpngImportIsoParams, type XcpngImportIsoResult, type XcpngImportVdiParams, type XcpngImportVdiResult, type XcpngIntroduceSrParams, type XcpngIntroduceSrResult, type XcpngListAttachedDisksParams, type XcpngListAttachedDisksResult, type XcpngListHostsParams, type XcpngListHostsResult, type XcpngListMessagesParams, type XcpngListMessagesResult, type XcpngListNetworksParams, type XcpngListNetworksResult, type XcpngListPbdsParams, type XcpngListPbdsResult, type XcpngListPoolsParams, type XcpngListPoolsResult, type XcpngListSnapshotsParams, type XcpngListSnapshotsResult, type XcpngListStorageRepositoriesParams, type XcpngListStorageRepositoriesResult, type XcpngListTemplatesParams, type XcpngListTemplatesResult, type XcpngListVbdsParams, type XcpngListVbdsResult, type XcpngListVdisParams, type XcpngListVdisResult, type XcpngListVmsParams, type XcpngListVmsResult, type XcpngPifScanParams, type XcpngPifScanResult, type XcpngPlugPbdParams, type XcpngPlugPbdResult, type XcpngPlugPifParams, type XcpngPlugPifResult, type XcpngProvisionVmFromIsoParams, type XcpngProvisionVmFromIsoResult, type XcpngProvisionVmFromIsoStep, type XcpngProvisionVmParams, type XcpngProvisionVmResult, type XcpngProvisionVmStep, type XcpngRebootVmParams, type XcpngRebootVmResult, type XcpngRemoveDiskParams, type XcpngRemoveDiskResult, type XcpngResizeVdiParams, type XcpngResizeVdiResult, type XcpngResizeVmCpusParams, type XcpngResizeVmCpusResult, type XcpngResizeVmMemoryParams, type XcpngResizeVmMemoryResult, type XcpngResumeVmParams, type XcpngResumeVmResult, type XcpngRevertSnapshotParams, type XcpngRevertSnapshotResult, type XcpngSetBootOrderParams, type XcpngSetBootOrderResult, type XcpngSetNetworkParamParams, type XcpngSetNetworkParamResult, type XcpngSetPifParamParams, type XcpngSetPifParamResult, type XcpngSetPoolParamParams, type XcpngSetPoolParamResult, type XcpngSetSnapshotParamParams, type XcpngSetSnapshotParamResult, type XcpngSetSrParamParams, type XcpngSetSrParamResult, type XcpngSetVmResourcesParams, type XcpngSetVmResourcesResult, type XcpngSnapshotVmParams, type XcpngSnapshotVmResult, type XcpngStartVmParams, type XcpngStartVmResult, type XcpngStopVmParams, type XcpngStopVmResult, type XcpngSuspendVmParams, type XcpngSuspendVmResult, type XcpngUnplugPbdParams, type XcpngUnplugPbdResult, type XcpngUnplugPifParams, type XcpngUnplugPifResult, type XcpngUnplugVbdParams, type XcpngUnplugVbdResult, type XcpngUploadIsoHostResult, type XcpngUploadIsoParams, type XcpngUploadIsoResult, type XcpngVmCopyParams, type XcpngVmCopyResult, type XcpngVmExportParams, type XcpngVmExportResult, type XcpngVmImportParams, type XcpngVmImportResult, type XcpngVmInfo, type XcpngVmMigrateParams, type XcpngVmMigrateResult, _default as core, task, withSudo };
|
|
5578
|
+
export { type AddUsersParams, type AddUsersResult, App, CHECKMARK, type ChgrpParams, type ChgrpResult, type ChmodParams, type ChmodResult, type ChownParams, type ChownResult, Cli, CommandResult, type DockerInstallParams, type DockerInstallResult, type DockerRunContainerParams, type DockerRunContainerResult, type DockerRunDetachedParams, type DockerRunDetachedResult, type EnvVarObj, type ExecuteResult, type FileSystemOperations$1 as FileSystemOperations, Host, type IInvocation, type IRuntime, type InputMap, type InstallComposeParams, type InstallComposeResult, Invocation, LocalRuntime, type LogLevel, type ObjectType, type OsDetailsResult, type PkgInfoParams, type PkgInfoResult, type PkgInstallParams, type PkgInstallResult, type PkgIsInstalledParams, type PkgIsInstalledResult, type PkgRemoveParams, type PkgRemoveResult, type PkgUpdateParams, type PkgUpdateResult, type RebootIfNeededParams, type RebootIfNeededResult, type RebootNeededParams, type RebootNeededResult, type RebootParams, type RebootResult, RemoteRuntime, type RunFn, type RunFnReturnValue, SUDO_PROMPT_REGEX, type ShutdownParams, type ShutdownResult, Task, type TaskContext, type TaskFn, type TaskParams, type TaskPartialFn, Verbosity, XMARK, type XcpngAddDiskParams, type XcpngAddDiskResult, type XcpngAttachIsoParams, type XcpngAttachIsoResult, type XcpngAttachNetworkInterfaceParams, type XcpngAttachNetworkInterfaceResult, type XcpngAttachVdiParams, type XcpngAttachVdiResult, type XcpngAttachedDisk, type XcpngCleanupConfigDriveParams, type XcpngCleanupConfigDriveResult, type XcpngCleanupConfigDriveStep, type XcpngClearMessagesParams, type XcpngClearMessagesResult, type XcpngCloneTemplateParams, type XcpngCloneTemplateResult, type XcpngConvertTemplateToVmParams, type XcpngConvertTemplateToVmResult, type XcpngCopyVdiParams, type XcpngCopyVdiResult, type XcpngCreateBondParams, type XcpngCreateBondResult, type XcpngCreateConfigDriveParams, type XcpngCreateConfigDriveResult, type XcpngCreateConfigDriveStep, type XcpngCreatePbdParams, type XcpngCreatePbdResult, type XcpngCreateSrParams, type XcpngCreateSrResult, type XcpngCreateTemplateFromVdiParams, type XcpngCreateTemplateFromVdiResult, type XcpngCreateTemplateFromVdiStep, type XcpngCreateTemplateParams, type XcpngCreateTemplateResult, type XcpngCreateVdiParams, type XcpngCreateVdiResult, type XcpngCreateVmParams, type XcpngCreateVmResult, type XcpngDestroyBondParams, type XcpngDestroyBondResult, type XcpngDestroyIsoSrParams, type XcpngDestroyIsoSrResult, type XcpngDestroyPbdParams, type XcpngDestroyPbdResult, type XcpngDestroySnapshotParams, type XcpngDestroySnapshotResult, type XcpngDestroySrParams, type XcpngDestroySrResult, type XcpngDestroyTemplateParams, type XcpngDestroyTemplateResult, type XcpngDestroyVdiParams, type XcpngDestroyVdiResult, type XcpngDestroyVmParams, type XcpngDestroyVmResult, type XcpngDetachCdMediaParams, type XcpngDetachCdMediaResult, type XcpngDetachCdMediaStep, type XcpngDetachIsoParams, type XcpngDetachIsoResult, type XcpngDetachNetworkInterfaceParams, type XcpngDetachNetworkInterfaceResult, type XcpngDetachVdiParams, type XcpngDetachVdiResult, type XcpngDisableHostParams, type XcpngDisableHostResult, type XcpngEnableHostParams, type XcpngEnableHostResult, type XcpngExportVdiParams, type XcpngExportVdiResult, type XcpngFindHostParams, type XcpngFindHostResult, type XcpngFindNetworkParams, type XcpngFindNetworkResult, type XcpngFindOrCreateIsoSrParams, type XcpngFindOrCreateIsoSrResult, type XcpngFindPbdParams, type XcpngFindPbdResult, type XcpngFindPoolParams, type XcpngFindPoolResult, type XcpngFindStorageRepositoryParams, type XcpngFindStorageRepositoryResult, type XcpngFindTemplateParams, type XcpngFindTemplateResult, type XcpngFindVdiParams, type XcpngFindVdiResult, type XcpngFindVmParams, type XcpngFindVmResult, type XcpngForgetSrParams, type XcpngForgetSrResult, type XcpngGetVmInfoParams, type XcpngGetVmInfoResult, type XcpngImportIsoParams, type XcpngImportIsoResult, type XcpngImportVdiParams, type XcpngImportVdiResult, type XcpngIntroduceSrParams, type XcpngIntroduceSrResult, type XcpngListAttachedDisksParams, type XcpngListAttachedDisksResult, type XcpngListHostsParams, type XcpngListHostsResult, type XcpngListMessagesParams, type XcpngListMessagesResult, type XcpngListNetworksParams, type XcpngListNetworksResult, type XcpngListPbdsParams, type XcpngListPbdsResult, type XcpngListPoolsParams, type XcpngListPoolsResult, type XcpngListSnapshotsParams, type XcpngListSnapshotsResult, type XcpngListStorageRepositoriesParams, type XcpngListStorageRepositoriesResult, type XcpngListTemplatesParams, type XcpngListTemplatesResult, type XcpngListVbdsParams, type XcpngListVbdsResult, type XcpngListVdisParams, type XcpngListVdisResult, type XcpngListVmsParams, type XcpngListVmsResult, type XcpngPifScanParams, type XcpngPifScanResult, type XcpngPlugPbdParams, type XcpngPlugPbdResult, type XcpngPlugPifParams, type XcpngPlugPifResult, type XcpngProvisionVmFromIsoParams, type XcpngProvisionVmFromIsoResult, type XcpngProvisionVmFromIsoStep, type XcpngProvisionVmParams, type XcpngProvisionVmResult, type XcpngProvisionVmStep, type XcpngRebootVmParams, type XcpngRebootVmResult, type XcpngRemoveDiskParams, type XcpngRemoveDiskResult, type XcpngResizeVdiParams, type XcpngResizeVdiResult, type XcpngResizeVmCpusParams, type XcpngResizeVmCpusResult, type XcpngResizeVmMemoryParams, type XcpngResizeVmMemoryResult, type XcpngResumeVmParams, type XcpngResumeVmResult, type XcpngRevertSnapshotParams, type XcpngRevertSnapshotResult, type XcpngSetBootOrderParams, type XcpngSetBootOrderResult, type XcpngSetNetworkParamParams, type XcpngSetNetworkParamResult, type XcpngSetPifParamParams, type XcpngSetPifParamResult, type XcpngSetPoolParamParams, type XcpngSetPoolParamResult, type XcpngSetSnapshotParamParams, type XcpngSetSnapshotParamResult, type XcpngSetSrParamParams, type XcpngSetSrParamResult, type XcpngSetVmResourcesParams, type XcpngSetVmResourcesResult, type XcpngSnapshotVmParams, type XcpngSnapshotVmResult, type XcpngStartVmParams, type XcpngStartVmResult, type XcpngStopVmParams, type XcpngStopVmResult, type XcpngSuspendVmParams, type XcpngSuspendVmResult, type XcpngUnplugPbdParams, type XcpngUnplugPbdResult, type XcpngUnplugPifParams, type XcpngUnplugPifResult, type XcpngUnplugVbdParams, type XcpngUnplugVbdResult, type XcpngUploadIsoHostResult, type XcpngUploadIsoParams, type XcpngUploadIsoResult, type XcpngVmCopyParams, type XcpngVmCopyResult, type XcpngVmExportParams, type XcpngVmExportResult, type XcpngVmImportParams, type XcpngVmImportResult, type XcpngVmInfo, type XcpngVmMigrateParams, type XcpngVmMigrateResult, _default as core, task, withSudo };
|