penguins-eggs 10.0.31 → 10.0.33
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/.oclif.manifest.json +192 -192
- package/README.md +29 -29
- package/addons/eggs/theme/livecd/isolinux.main.alpine.cfg +4 -8
- package/dist/classes/ovary.js +13 -9
- package/dist/classes/utils.d.ts +6 -10
- package/dist/classes/utils.js +12 -25
- package/dist/index-old.d.ts +8 -0
- package/dist/index-old.js +8 -0
- package/dist/index.d.ts +52 -6
- package/dist/index.js +145 -6
- package/dist/krill/modules/bootloader-config.d.ts +4 -0
- package/dist/krill/modules/bootloader-config.js +86 -4
- package/dist/krill/modules/m-keyboard.js +2 -1
- package/dist/krill/modules/mount-fs.js +4 -2
- package/dist/krill/sequence.d.ts +0 -6
- package/dist/krill/sequence.js +0 -6
- package/manpages/doc/man/eggs.1.gz +0 -0
- package/manpages/doc/man/eggs.html +604 -4
- package/package.json +17 -14
- package/dist/krill/modules/bootloader-config-alpine.d.ts +0 -14
- package/dist/krill/modules/bootloader-config-alpine.js +0 -37
- package/dist/krill/modules/bootloader-config-arch.d.ts +0 -14
- package/dist/krill/modules/bootloader-config-arch.js +0 -37
- package/dist/krill/modules/bootloader-config-debian.d.ts +0 -10
- package/dist/krill/modules/bootloader-config-debian.js +0 -50
- package/mkinitfs/machine-id-gen.sh +0 -3
- package/mkinitfs/sidecar.sh +0 -40
package/.oclif.manifest.json
CHANGED
|
@@ -1023,12 +1023,19 @@
|
|
|
1023
1023
|
"iso.js"
|
|
1024
1024
|
]
|
|
1025
1025
|
},
|
|
1026
|
-
"
|
|
1026
|
+
"wardrobe:get": {
|
|
1027
1027
|
"aliases": [],
|
|
1028
|
-
"args": {
|
|
1029
|
-
|
|
1028
|
+
"args": {
|
|
1029
|
+
"repo": {
|
|
1030
|
+
"description": "repository to get",
|
|
1031
|
+
"name": "repo",
|
|
1032
|
+
"required": false
|
|
1033
|
+
}
|
|
1034
|
+
},
|
|
1035
|
+
"description": "get warorobe",
|
|
1030
1036
|
"examples": [
|
|
1031
|
-
"
|
|
1037
|
+
"eggs wardrobe get",
|
|
1038
|
+
"eggs wardrobe get your-wardrobe"
|
|
1032
1039
|
],
|
|
1033
1040
|
"flags": {
|
|
1034
1041
|
"help": {
|
|
@@ -1038,16 +1045,8 @@
|
|
|
1038
1045
|
"allowNo": false,
|
|
1039
1046
|
"type": "boolean"
|
|
1040
1047
|
},
|
|
1041
|
-
"nointeractive": {
|
|
1042
|
-
"char": "n",
|
|
1043
|
-
"description": "no user interaction",
|
|
1044
|
-
"name": "nointeractive",
|
|
1045
|
-
"allowNo": false,
|
|
1046
|
-
"type": "boolean"
|
|
1047
|
-
},
|
|
1048
1048
|
"verbose": {
|
|
1049
1049
|
"char": "v",
|
|
1050
|
-
"description": "verbose",
|
|
1051
1050
|
"name": "verbose",
|
|
1052
1051
|
"allowNo": false,
|
|
1053
1052
|
"type": "boolean"
|
|
@@ -1055,7 +1054,7 @@
|
|
|
1055
1054
|
},
|
|
1056
1055
|
"hasDynamicHelp": false,
|
|
1057
1056
|
"hiddenAliases": [],
|
|
1058
|
-
"id": "
|
|
1057
|
+
"id": "wardrobe:get",
|
|
1059
1058
|
"pluginAlias": "penguins-eggs",
|
|
1060
1059
|
"pluginName": "penguins-eggs",
|
|
1061
1060
|
"pluginType": "core",
|
|
@@ -1065,25 +1064,33 @@
|
|
|
1065
1064
|
"relativePath": [
|
|
1066
1065
|
"dist",
|
|
1067
1066
|
"commands",
|
|
1068
|
-
"
|
|
1069
|
-
"
|
|
1067
|
+
"wardrobe",
|
|
1068
|
+
"get.js"
|
|
1070
1069
|
]
|
|
1071
1070
|
},
|
|
1072
|
-
"
|
|
1071
|
+
"wardrobe:list": {
|
|
1073
1072
|
"aliases": [],
|
|
1074
|
-
"args": {
|
|
1075
|
-
|
|
1073
|
+
"args": {
|
|
1074
|
+
"repo": {
|
|
1075
|
+
"description": "wardrobe to get",
|
|
1076
|
+
"name": "repo",
|
|
1077
|
+
"required": false
|
|
1078
|
+
}
|
|
1079
|
+
},
|
|
1080
|
+
"description": "list costumes and accessoires in wardrobe",
|
|
1076
1081
|
"examples": [
|
|
1077
|
-
"
|
|
1078
|
-
"
|
|
1082
|
+
"eggs wardrobe list",
|
|
1083
|
+
"eggs wardrobe list your-wardrobe",
|
|
1084
|
+
"eggs wardrobe list --distro arch"
|
|
1079
1085
|
],
|
|
1080
1086
|
"flags": {
|
|
1081
|
-
"
|
|
1082
|
-
"char": "
|
|
1083
|
-
"description": "
|
|
1084
|
-
"name": "
|
|
1085
|
-
"
|
|
1086
|
-
"
|
|
1087
|
+
"distro": {
|
|
1088
|
+
"char": "d",
|
|
1089
|
+
"description": "distro",
|
|
1090
|
+
"name": "distro",
|
|
1091
|
+
"hasDynamicHelp": false,
|
|
1092
|
+
"multiple": false,
|
|
1093
|
+
"type": "option"
|
|
1087
1094
|
},
|
|
1088
1095
|
"help": {
|
|
1089
1096
|
"char": "h",
|
|
@@ -1092,23 +1099,8 @@
|
|
|
1092
1099
|
"allowNo": false,
|
|
1093
1100
|
"type": "boolean"
|
|
1094
1101
|
},
|
|
1095
|
-
"nointeractive": {
|
|
1096
|
-
"char": "n",
|
|
1097
|
-
"description": "no user interaction",
|
|
1098
|
-
"name": "nointeractive",
|
|
1099
|
-
"allowNo": false,
|
|
1100
|
-
"type": "boolean"
|
|
1101
|
-
},
|
|
1102
|
-
"remove": {
|
|
1103
|
-
"char": "r",
|
|
1104
|
-
"description": "remove penguins-eggs PPA repository",
|
|
1105
|
-
"name": "remove",
|
|
1106
|
-
"allowNo": false,
|
|
1107
|
-
"type": "boolean"
|
|
1108
|
-
},
|
|
1109
1102
|
"verbose": {
|
|
1110
1103
|
"char": "v",
|
|
1111
|
-
"description": "verbose",
|
|
1112
1104
|
"name": "verbose",
|
|
1113
1105
|
"allowNo": false,
|
|
1114
1106
|
"type": "boolean"
|
|
@@ -1116,7 +1108,7 @@
|
|
|
1116
1108
|
},
|
|
1117
1109
|
"hasDynamicHelp": false,
|
|
1118
1110
|
"hiddenAliases": [],
|
|
1119
|
-
"id": "
|
|
1111
|
+
"id": "wardrobe:list",
|
|
1120
1112
|
"pluginAlias": "penguins-eggs",
|
|
1121
1113
|
"pluginName": "penguins-eggs",
|
|
1122
1114
|
"pluginType": "core",
|
|
@@ -1126,17 +1118,24 @@
|
|
|
1126
1118
|
"relativePath": [
|
|
1127
1119
|
"dist",
|
|
1128
1120
|
"commands",
|
|
1129
|
-
"
|
|
1130
|
-
"
|
|
1121
|
+
"wardrobe",
|
|
1122
|
+
"list.js"
|
|
1131
1123
|
]
|
|
1132
1124
|
},
|
|
1133
|
-
"
|
|
1125
|
+
"wardrobe:show": {
|
|
1134
1126
|
"aliases": [],
|
|
1135
|
-
"args": {
|
|
1136
|
-
|
|
1127
|
+
"args": {
|
|
1128
|
+
"repo": {
|
|
1129
|
+
"description": "costume to show",
|
|
1130
|
+
"name": "repo",
|
|
1131
|
+
"required": false
|
|
1132
|
+
}
|
|
1133
|
+
},
|
|
1134
|
+
"description": "show costumes/accessories in wardrobe",
|
|
1137
1135
|
"examples": [
|
|
1138
|
-
"
|
|
1139
|
-
"
|
|
1136
|
+
"eggs wardrobe show colibri",
|
|
1137
|
+
"eggs wardrobe show accessories/firmwares",
|
|
1138
|
+
"eggs wardrobe show accessories/"
|
|
1140
1139
|
],
|
|
1141
1140
|
"flags": {
|
|
1142
1141
|
"help": {
|
|
@@ -1146,45 +1145,63 @@
|
|
|
1146
1145
|
"allowNo": false,
|
|
1147
1146
|
"type": "boolean"
|
|
1148
1147
|
},
|
|
1149
|
-
"
|
|
1150
|
-
"char": "
|
|
1151
|
-
"description": "
|
|
1152
|
-
"name": "
|
|
1153
|
-
"
|
|
1154
|
-
"
|
|
1155
|
-
"type": "option"
|
|
1148
|
+
"json": {
|
|
1149
|
+
"char": "j",
|
|
1150
|
+
"description": "output JSON",
|
|
1151
|
+
"name": "json",
|
|
1152
|
+
"allowNo": false,
|
|
1153
|
+
"type": "boolean"
|
|
1156
1154
|
},
|
|
1157
1155
|
"verbose": {
|
|
1158
1156
|
"char": "v",
|
|
1159
1157
|
"name": "verbose",
|
|
1160
1158
|
"allowNo": false,
|
|
1161
1159
|
"type": "boolean"
|
|
1160
|
+
},
|
|
1161
|
+
"wardrobe": {
|
|
1162
|
+
"char": "w",
|
|
1163
|
+
"description": "wardrobe",
|
|
1164
|
+
"name": "wardrobe",
|
|
1165
|
+
"hasDynamicHelp": false,
|
|
1166
|
+
"multiple": false,
|
|
1167
|
+
"type": "option"
|
|
1162
1168
|
}
|
|
1163
1169
|
},
|
|
1164
1170
|
"hasDynamicHelp": false,
|
|
1165
1171
|
"hiddenAliases": [],
|
|
1166
|
-
"id": "
|
|
1172
|
+
"id": "wardrobe:show",
|
|
1167
1173
|
"pluginAlias": "penguins-eggs",
|
|
1168
1174
|
"pluginName": "penguins-eggs",
|
|
1169
1175
|
"pluginType": "core",
|
|
1170
1176
|
"strict": true,
|
|
1171
1177
|
"enableJsonFlag": false,
|
|
1178
|
+
"example": [
|
|
1179
|
+
"eggs wardrobe show colibri",
|
|
1180
|
+
"eggs wardrobe show accessories/firmwares",
|
|
1181
|
+
"eggs wardrobe show accessories/"
|
|
1182
|
+
],
|
|
1172
1183
|
"isESM": true,
|
|
1173
1184
|
"relativePath": [
|
|
1174
1185
|
"dist",
|
|
1175
1186
|
"commands",
|
|
1176
|
-
"
|
|
1177
|
-
"
|
|
1187
|
+
"wardrobe",
|
|
1188
|
+
"show.js"
|
|
1178
1189
|
]
|
|
1179
1190
|
},
|
|
1180
|
-
"
|
|
1191
|
+
"wardrobe:wear": {
|
|
1181
1192
|
"aliases": [],
|
|
1182
|
-
"args": {
|
|
1183
|
-
|
|
1193
|
+
"args": {
|
|
1194
|
+
"repo": {
|
|
1195
|
+
"description": "costume to wear",
|
|
1196
|
+
"name": "repo",
|
|
1197
|
+
"required": false
|
|
1198
|
+
}
|
|
1199
|
+
},
|
|
1200
|
+
"description": "wear costume/accessories from wardrobe",
|
|
1184
1201
|
"examples": [
|
|
1185
|
-
"eggs
|
|
1186
|
-
"eggs
|
|
1187
|
-
"eggs
|
|
1202
|
+
"sudo eggs wardrobe wear duck",
|
|
1203
|
+
"sudo eggs wardrobe wear accessories/firmwares",
|
|
1204
|
+
"sudo eggs wardrobe wear wagtail/waydroid"
|
|
1188
1205
|
],
|
|
1189
1206
|
"flags": {
|
|
1190
1207
|
"help": {
|
|
@@ -1194,24 +1211,38 @@
|
|
|
1194
1211
|
"allowNo": false,
|
|
1195
1212
|
"type": "boolean"
|
|
1196
1213
|
},
|
|
1197
|
-
"
|
|
1198
|
-
"char": "
|
|
1199
|
-
"description": "
|
|
1200
|
-
"name": "
|
|
1214
|
+
"no_accessories": {
|
|
1215
|
+
"char": "a",
|
|
1216
|
+
"description": "not install accessories",
|
|
1217
|
+
"name": "no_accessories",
|
|
1201
1218
|
"allowNo": false,
|
|
1202
1219
|
"type": "boolean"
|
|
1203
1220
|
},
|
|
1204
|
-
"
|
|
1205
|
-
"char": "
|
|
1206
|
-
"description": "
|
|
1207
|
-
"name": "
|
|
1221
|
+
"no_firmwares": {
|
|
1222
|
+
"char": "f",
|
|
1223
|
+
"description": "not install firmwares",
|
|
1224
|
+
"name": "no_firmwares",
|
|
1208
1225
|
"allowNo": false,
|
|
1209
1226
|
"type": "boolean"
|
|
1227
|
+
},
|
|
1228
|
+
"verbose": {
|
|
1229
|
+
"char": "v",
|
|
1230
|
+
"name": "verbose",
|
|
1231
|
+
"allowNo": false,
|
|
1232
|
+
"type": "boolean"
|
|
1233
|
+
},
|
|
1234
|
+
"wardrobe": {
|
|
1235
|
+
"char": "w",
|
|
1236
|
+
"description": "wardrobe",
|
|
1237
|
+
"name": "wardrobe",
|
|
1238
|
+
"hasDynamicHelp": false,
|
|
1239
|
+
"multiple": false,
|
|
1240
|
+
"type": "option"
|
|
1210
1241
|
}
|
|
1211
1242
|
},
|
|
1212
1243
|
"hasDynamicHelp": false,
|
|
1213
1244
|
"hiddenAliases": [],
|
|
1214
|
-
"id": "
|
|
1245
|
+
"id": "wardrobe:wear",
|
|
1215
1246
|
"pluginAlias": "penguins-eggs",
|
|
1216
1247
|
"pluginName": "penguins-eggs",
|
|
1217
1248
|
"pluginType": "core",
|
|
@@ -1221,16 +1252,16 @@
|
|
|
1221
1252
|
"relativePath": [
|
|
1222
1253
|
"dist",
|
|
1223
1254
|
"commands",
|
|
1224
|
-
"
|
|
1225
|
-
"
|
|
1255
|
+
"wardrobe",
|
|
1256
|
+
"wear.js"
|
|
1226
1257
|
]
|
|
1227
1258
|
},
|
|
1228
|
-
"tools:
|
|
1259
|
+
"tools:clean": {
|
|
1229
1260
|
"aliases": [],
|
|
1230
1261
|
"args": {},
|
|
1231
|
-
"description": "
|
|
1262
|
+
"description": "clean system log, apt, etc",
|
|
1232
1263
|
"examples": [
|
|
1233
|
-
"sudo eggs tools
|
|
1264
|
+
"sudo eggs tools clean"
|
|
1234
1265
|
],
|
|
1235
1266
|
"flags": {
|
|
1236
1267
|
"help": {
|
|
@@ -1240,8 +1271,16 @@
|
|
|
1240
1271
|
"allowNo": false,
|
|
1241
1272
|
"type": "boolean"
|
|
1242
1273
|
},
|
|
1274
|
+
"nointeractive": {
|
|
1275
|
+
"char": "n",
|
|
1276
|
+
"description": "no user interaction",
|
|
1277
|
+
"name": "nointeractive",
|
|
1278
|
+
"allowNo": false,
|
|
1279
|
+
"type": "boolean"
|
|
1280
|
+
},
|
|
1243
1281
|
"verbose": {
|
|
1244
1282
|
"char": "v",
|
|
1283
|
+
"description": "verbose",
|
|
1245
1284
|
"name": "verbose",
|
|
1246
1285
|
"allowNo": false,
|
|
1247
1286
|
"type": "boolean"
|
|
@@ -1249,36 +1288,36 @@
|
|
|
1249
1288
|
},
|
|
1250
1289
|
"hasDynamicHelp": false,
|
|
1251
1290
|
"hiddenAliases": [],
|
|
1252
|
-
"id": "tools:
|
|
1291
|
+
"id": "tools:clean",
|
|
1253
1292
|
"pluginAlias": "penguins-eggs",
|
|
1254
1293
|
"pluginName": "penguins-eggs",
|
|
1255
1294
|
"pluginType": "core",
|
|
1256
1295
|
"strict": true,
|
|
1257
1296
|
"enableJsonFlag": false,
|
|
1258
|
-
"dir": "/var/local/yolk",
|
|
1259
1297
|
"isESM": true,
|
|
1260
1298
|
"relativePath": [
|
|
1261
1299
|
"dist",
|
|
1262
1300
|
"commands",
|
|
1263
1301
|
"tools",
|
|
1264
|
-
"
|
|
1302
|
+
"clean.js"
|
|
1265
1303
|
]
|
|
1266
1304
|
},
|
|
1267
|
-
"
|
|
1305
|
+
"tools:ppa": {
|
|
1268
1306
|
"aliases": [],
|
|
1269
|
-
"args": {
|
|
1270
|
-
|
|
1271
|
-
"description": "repository to get",
|
|
1272
|
-
"name": "repo",
|
|
1273
|
-
"required": false
|
|
1274
|
-
}
|
|
1275
|
-
},
|
|
1276
|
-
"description": "get warorobe",
|
|
1307
|
+
"args": {},
|
|
1308
|
+
"description": "add/remove repo",
|
|
1277
1309
|
"examples": [
|
|
1278
|
-
"eggs
|
|
1279
|
-
"eggs
|
|
1310
|
+
"sudo eggs tools ppa --add",
|
|
1311
|
+
"sudo eggs tools ppa --remove"
|
|
1280
1312
|
],
|
|
1281
1313
|
"flags": {
|
|
1314
|
+
"add": {
|
|
1315
|
+
"char": "a",
|
|
1316
|
+
"description": "add penguins-eggs PPA repository",
|
|
1317
|
+
"name": "add",
|
|
1318
|
+
"allowNo": false,
|
|
1319
|
+
"type": "boolean"
|
|
1320
|
+
},
|
|
1282
1321
|
"help": {
|
|
1283
1322
|
"char": "h",
|
|
1284
1323
|
"description": "Show CLI help.",
|
|
@@ -1286,8 +1325,23 @@
|
|
|
1286
1325
|
"allowNo": false,
|
|
1287
1326
|
"type": "boolean"
|
|
1288
1327
|
},
|
|
1328
|
+
"nointeractive": {
|
|
1329
|
+
"char": "n",
|
|
1330
|
+
"description": "no user interaction",
|
|
1331
|
+
"name": "nointeractive",
|
|
1332
|
+
"allowNo": false,
|
|
1333
|
+
"type": "boolean"
|
|
1334
|
+
},
|
|
1335
|
+
"remove": {
|
|
1336
|
+
"char": "r",
|
|
1337
|
+
"description": "remove penguins-eggs PPA repository",
|
|
1338
|
+
"name": "remove",
|
|
1339
|
+
"allowNo": false,
|
|
1340
|
+
"type": "boolean"
|
|
1341
|
+
},
|
|
1289
1342
|
"verbose": {
|
|
1290
1343
|
"char": "v",
|
|
1344
|
+
"description": "verbose",
|
|
1291
1345
|
"name": "verbose",
|
|
1292
1346
|
"allowNo": false,
|
|
1293
1347
|
"type": "boolean"
|
|
@@ -1295,7 +1349,7 @@
|
|
|
1295
1349
|
},
|
|
1296
1350
|
"hasDynamicHelp": false,
|
|
1297
1351
|
"hiddenAliases": [],
|
|
1298
|
-
"id": "
|
|
1352
|
+
"id": "tools:ppa",
|
|
1299
1353
|
"pluginAlias": "penguins-eggs",
|
|
1300
1354
|
"pluginName": "penguins-eggs",
|
|
1301
1355
|
"pluginType": "core",
|
|
@@ -1305,34 +1359,19 @@
|
|
|
1305
1359
|
"relativePath": [
|
|
1306
1360
|
"dist",
|
|
1307
1361
|
"commands",
|
|
1308
|
-
"
|
|
1309
|
-
"
|
|
1362
|
+
"tools",
|
|
1363
|
+
"ppa.js"
|
|
1310
1364
|
]
|
|
1311
1365
|
},
|
|
1312
|
-
"
|
|
1366
|
+
"tools:skel": {
|
|
1313
1367
|
"aliases": [],
|
|
1314
|
-
"args": {
|
|
1315
|
-
|
|
1316
|
-
"description": "wardrobe to get",
|
|
1317
|
-
"name": "repo",
|
|
1318
|
-
"required": false
|
|
1319
|
-
}
|
|
1320
|
-
},
|
|
1321
|
-
"description": "list costumes and accessoires in wardrobe",
|
|
1368
|
+
"args": {},
|
|
1369
|
+
"description": "update skel from home configuration",
|
|
1322
1370
|
"examples": [
|
|
1323
|
-
"eggs
|
|
1324
|
-
"eggs
|
|
1325
|
-
"eggs wardrobe list --distro arch"
|
|
1371
|
+
"sudo eggs tools skel",
|
|
1372
|
+
"sudo eggs tools skel --user user-to-be-copied"
|
|
1326
1373
|
],
|
|
1327
1374
|
"flags": {
|
|
1328
|
-
"distro": {
|
|
1329
|
-
"char": "d",
|
|
1330
|
-
"description": "distro",
|
|
1331
|
-
"name": "distro",
|
|
1332
|
-
"hasDynamicHelp": false,
|
|
1333
|
-
"multiple": false,
|
|
1334
|
-
"type": "option"
|
|
1335
|
-
},
|
|
1336
1375
|
"help": {
|
|
1337
1376
|
"char": "h",
|
|
1338
1377
|
"description": "Show CLI help.",
|
|
@@ -1340,6 +1379,14 @@
|
|
|
1340
1379
|
"allowNo": false,
|
|
1341
1380
|
"type": "boolean"
|
|
1342
1381
|
},
|
|
1382
|
+
"user": {
|
|
1383
|
+
"char": "u",
|
|
1384
|
+
"description": "user to be used",
|
|
1385
|
+
"name": "user",
|
|
1386
|
+
"hasDynamicHelp": false,
|
|
1387
|
+
"multiple": false,
|
|
1388
|
+
"type": "option"
|
|
1389
|
+
},
|
|
1343
1390
|
"verbose": {
|
|
1344
1391
|
"char": "v",
|
|
1345
1392
|
"name": "verbose",
|
|
@@ -1349,7 +1396,7 @@
|
|
|
1349
1396
|
},
|
|
1350
1397
|
"hasDynamicHelp": false,
|
|
1351
1398
|
"hiddenAliases": [],
|
|
1352
|
-
"id": "
|
|
1399
|
+
"id": "tools:skel",
|
|
1353
1400
|
"pluginAlias": "penguins-eggs",
|
|
1354
1401
|
"pluginName": "penguins-eggs",
|
|
1355
1402
|
"pluginType": "core",
|
|
@@ -1359,24 +1406,18 @@
|
|
|
1359
1406
|
"relativePath": [
|
|
1360
1407
|
"dist",
|
|
1361
1408
|
"commands",
|
|
1362
|
-
"
|
|
1363
|
-
"
|
|
1409
|
+
"tools",
|
|
1410
|
+
"skel.js"
|
|
1364
1411
|
]
|
|
1365
1412
|
},
|
|
1366
|
-
"
|
|
1413
|
+
"tools:stat": {
|
|
1367
1414
|
"aliases": [],
|
|
1368
|
-
"args": {
|
|
1369
|
-
|
|
1370
|
-
"description": "costume to show",
|
|
1371
|
-
"name": "repo",
|
|
1372
|
-
"required": false
|
|
1373
|
-
}
|
|
1374
|
-
},
|
|
1375
|
-
"description": "show costumes/accessories in wardrobe",
|
|
1415
|
+
"args": {},
|
|
1416
|
+
"description": "get statistics from sourceforge",
|
|
1376
1417
|
"examples": [
|
|
1377
|
-
"eggs
|
|
1378
|
-
"eggs
|
|
1379
|
-
"eggs
|
|
1418
|
+
"eggs tools stat",
|
|
1419
|
+
"eggs tools stat --month",
|
|
1420
|
+
"eggs tools stat --year"
|
|
1380
1421
|
],
|
|
1381
1422
|
"flags": {
|
|
1382
1423
|
"help": {
|
|
@@ -1386,63 +1427,43 @@
|
|
|
1386
1427
|
"allowNo": false,
|
|
1387
1428
|
"type": "boolean"
|
|
1388
1429
|
},
|
|
1389
|
-
"
|
|
1390
|
-
"char": "
|
|
1391
|
-
"description": "
|
|
1392
|
-
"name": "
|
|
1430
|
+
"month": {
|
|
1431
|
+
"char": "m",
|
|
1432
|
+
"description": "current month",
|
|
1433
|
+
"name": "month",
|
|
1393
1434
|
"allowNo": false,
|
|
1394
1435
|
"type": "boolean"
|
|
1395
1436
|
},
|
|
1396
|
-
"
|
|
1397
|
-
"char": "
|
|
1398
|
-
"
|
|
1437
|
+
"year": {
|
|
1438
|
+
"char": "y",
|
|
1439
|
+
"description": "current year",
|
|
1440
|
+
"name": "year",
|
|
1399
1441
|
"allowNo": false,
|
|
1400
1442
|
"type": "boolean"
|
|
1401
|
-
},
|
|
1402
|
-
"wardrobe": {
|
|
1403
|
-
"char": "w",
|
|
1404
|
-
"description": "wardrobe",
|
|
1405
|
-
"name": "wardrobe",
|
|
1406
|
-
"hasDynamicHelp": false,
|
|
1407
|
-
"multiple": false,
|
|
1408
|
-
"type": "option"
|
|
1409
1443
|
}
|
|
1410
1444
|
},
|
|
1411
1445
|
"hasDynamicHelp": false,
|
|
1412
1446
|
"hiddenAliases": [],
|
|
1413
|
-
"id": "
|
|
1447
|
+
"id": "tools:stat",
|
|
1414
1448
|
"pluginAlias": "penguins-eggs",
|
|
1415
1449
|
"pluginName": "penguins-eggs",
|
|
1416
1450
|
"pluginType": "core",
|
|
1417
1451
|
"strict": true,
|
|
1418
1452
|
"enableJsonFlag": false,
|
|
1419
|
-
"example": [
|
|
1420
|
-
"eggs wardrobe show colibri",
|
|
1421
|
-
"eggs wardrobe show accessories/firmwares",
|
|
1422
|
-
"eggs wardrobe show accessories/"
|
|
1423
|
-
],
|
|
1424
1453
|
"isESM": true,
|
|
1425
1454
|
"relativePath": [
|
|
1426
1455
|
"dist",
|
|
1427
1456
|
"commands",
|
|
1428
|
-
"
|
|
1429
|
-
"
|
|
1457
|
+
"tools",
|
|
1458
|
+
"stat.js"
|
|
1430
1459
|
]
|
|
1431
1460
|
},
|
|
1432
|
-
"
|
|
1461
|
+
"tools:yolk": {
|
|
1433
1462
|
"aliases": [],
|
|
1434
|
-
"args": {
|
|
1435
|
-
|
|
1436
|
-
"description": "costume to wear",
|
|
1437
|
-
"name": "repo",
|
|
1438
|
-
"required": false
|
|
1439
|
-
}
|
|
1440
|
-
},
|
|
1441
|
-
"description": "wear costume/accessories from wardrobe",
|
|
1463
|
+
"args": {},
|
|
1464
|
+
"description": "configure eggs to install without internet",
|
|
1442
1465
|
"examples": [
|
|
1443
|
-
"sudo eggs
|
|
1444
|
-
"sudo eggs wardrobe wear accessories/firmwares",
|
|
1445
|
-
"sudo eggs wardrobe wear wagtail/waydroid"
|
|
1466
|
+
"sudo eggs tools yolk"
|
|
1446
1467
|
],
|
|
1447
1468
|
"flags": {
|
|
1448
1469
|
"help": {
|
|
@@ -1452,51 +1473,30 @@
|
|
|
1452
1473
|
"allowNo": false,
|
|
1453
1474
|
"type": "boolean"
|
|
1454
1475
|
},
|
|
1455
|
-
"no_accessories": {
|
|
1456
|
-
"char": "a",
|
|
1457
|
-
"description": "not install accessories",
|
|
1458
|
-
"name": "no_accessories",
|
|
1459
|
-
"allowNo": false,
|
|
1460
|
-
"type": "boolean"
|
|
1461
|
-
},
|
|
1462
|
-
"no_firmwares": {
|
|
1463
|
-
"char": "f",
|
|
1464
|
-
"description": "not install firmwares",
|
|
1465
|
-
"name": "no_firmwares",
|
|
1466
|
-
"allowNo": false,
|
|
1467
|
-
"type": "boolean"
|
|
1468
|
-
},
|
|
1469
1476
|
"verbose": {
|
|
1470
1477
|
"char": "v",
|
|
1471
1478
|
"name": "verbose",
|
|
1472
1479
|
"allowNo": false,
|
|
1473
1480
|
"type": "boolean"
|
|
1474
|
-
},
|
|
1475
|
-
"wardrobe": {
|
|
1476
|
-
"char": "w",
|
|
1477
|
-
"description": "wardrobe",
|
|
1478
|
-
"name": "wardrobe",
|
|
1479
|
-
"hasDynamicHelp": false,
|
|
1480
|
-
"multiple": false,
|
|
1481
|
-
"type": "option"
|
|
1482
1481
|
}
|
|
1483
1482
|
},
|
|
1484
1483
|
"hasDynamicHelp": false,
|
|
1485
1484
|
"hiddenAliases": [],
|
|
1486
|
-
"id": "
|
|
1485
|
+
"id": "tools:yolk",
|
|
1487
1486
|
"pluginAlias": "penguins-eggs",
|
|
1488
1487
|
"pluginName": "penguins-eggs",
|
|
1489
1488
|
"pluginType": "core",
|
|
1490
1489
|
"strict": true,
|
|
1491
1490
|
"enableJsonFlag": false,
|
|
1491
|
+
"dir": "/var/local/yolk",
|
|
1492
1492
|
"isESM": true,
|
|
1493
1493
|
"relativePath": [
|
|
1494
1494
|
"dist",
|
|
1495
1495
|
"commands",
|
|
1496
|
-
"
|
|
1497
|
-
"
|
|
1496
|
+
"tools",
|
|
1497
|
+
"yolk.js"
|
|
1498
1498
|
]
|
|
1499
1499
|
}
|
|
1500
1500
|
},
|
|
1501
|
-
"version": "10.0.
|
|
1501
|
+
"version": "10.0.33"
|
|
1502
1502
|
}
|