penguins-eggs 25.12.15 → 26.1.3
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 +109 -489
- package/README.pdf +3174 -19913
- package/addons/eggs/theme/applications/install-system.desktop +3 -9
- package/assets/calamares/install-system.sh +23 -22
- package/assets/penguins-krill.desktop +5 -23
- package/dist/classes/distro.js +2 -1
- package/dist/classes/incubation/incubator.js +21 -8
- package/dist/classes/ovary.d/create-xdg-autostart.d.ts +3 -3
- package/dist/classes/ovary.d/create-xdg-autostart.js +139 -149
- package/dist/classes/ovary.d/luks-home-support-systemd.d.ts +12 -0
- package/dist/classes/ovary.d/luks-home-support-systemd.js +70 -0
- package/dist/classes/ovary.d/luks-home-support.d.ts +1 -0
- package/dist/classes/ovary.d/luks-home-support.js +101 -24
- package/dist/classes/ovary.d/produce.js +2 -2
- package/dist/classes/ovary.d/user-create-live.js +6 -1
- package/dist/classes/ovary.d/xorriso-command.js +11 -21
- package/dist/classes/utils.js +3 -0
- package/dist/classes/xdg.d.ts +6 -1
- package/dist/classes/xdg.js +119 -108
- package/dist/commands/export/appimage.js +2 -1
- package/dist/commands/export/pkg.js +16 -8
- package/dist/commands/update.js +1 -1
- package/dist/krill/classes/prepare.d/users.js +6 -6
- package/dist/krill/classes/prepare.js +6 -2
- package/dist/krill/classes/sequence.d/remove-homecrypt-hack.d.ts +13 -0
- package/dist/krill/classes/sequence.d/remove-homecrypt-hack.js +65 -0
- package/dist/krill/classes/sequence.d.ts +2 -0
- package/dist/krill/classes/sequence.js +7 -2
- package/dist/krill/components/users.js +4 -4
- package/dist/krill/lib/get_userfullname.js +1 -1
- package/dist/krill/lib/get_username.js +3 -3
- package/package.json +16 -15
- package/perrisbrewery/template/dependencies.yaml +3 -0
package/.oclif.manifest.json
CHANGED
|
@@ -1095,12 +1095,19 @@
|
|
|
1095
1095
|
"purge.js"
|
|
1096
1096
|
]
|
|
1097
1097
|
},
|
|
1098
|
-
"
|
|
1098
|
+
"wardrobe:get": {
|
|
1099
1099
|
"aliases": [],
|
|
1100
|
-
"args": {
|
|
1101
|
-
|
|
1100
|
+
"args": {
|
|
1101
|
+
"repo": {
|
|
1102
|
+
"description": "repository to get",
|
|
1103
|
+
"name": "repo",
|
|
1104
|
+
"required": false
|
|
1105
|
+
}
|
|
1106
|
+
},
|
|
1107
|
+
"description": "get warorobe",
|
|
1102
1108
|
"examples": [
|
|
1103
|
-
"
|
|
1109
|
+
"eggs wardrobe get",
|
|
1110
|
+
"eggs wardrobe get your-wardrobe"
|
|
1104
1111
|
],
|
|
1105
1112
|
"flags": {
|
|
1106
1113
|
"help": {
|
|
@@ -1110,16 +1117,8 @@
|
|
|
1110
1117
|
"allowNo": false,
|
|
1111
1118
|
"type": "boolean"
|
|
1112
1119
|
},
|
|
1113
|
-
"nointeractive": {
|
|
1114
|
-
"char": "n",
|
|
1115
|
-
"description": "no user interaction",
|
|
1116
|
-
"name": "nointeractive",
|
|
1117
|
-
"allowNo": false,
|
|
1118
|
-
"type": "boolean"
|
|
1119
|
-
},
|
|
1120
1120
|
"verbose": {
|
|
1121
1121
|
"char": "v",
|
|
1122
|
-
"description": "verbose",
|
|
1123
1122
|
"name": "verbose",
|
|
1124
1123
|
"allowNo": false,
|
|
1125
1124
|
"type": "boolean"
|
|
@@ -1127,7 +1126,7 @@
|
|
|
1127
1126
|
},
|
|
1128
1127
|
"hasDynamicHelp": false,
|
|
1129
1128
|
"hiddenAliases": [],
|
|
1130
|
-
"id": "
|
|
1129
|
+
"id": "wardrobe:get",
|
|
1131
1130
|
"pluginAlias": "penguins-eggs",
|
|
1132
1131
|
"pluginName": "penguins-eggs",
|
|
1133
1132
|
"pluginType": "core",
|
|
@@ -1137,25 +1136,33 @@
|
|
|
1137
1136
|
"relativePath": [
|
|
1138
1137
|
"dist",
|
|
1139
1138
|
"commands",
|
|
1140
|
-
"
|
|
1141
|
-
"
|
|
1139
|
+
"wardrobe",
|
|
1140
|
+
"get.js"
|
|
1142
1141
|
]
|
|
1143
1142
|
},
|
|
1144
|
-
"
|
|
1143
|
+
"wardrobe:list": {
|
|
1145
1144
|
"aliases": [],
|
|
1146
|
-
"args": {
|
|
1147
|
-
|
|
1145
|
+
"args": {
|
|
1146
|
+
"repo": {
|
|
1147
|
+
"description": "wardrobe to get",
|
|
1148
|
+
"name": "repo",
|
|
1149
|
+
"required": false
|
|
1150
|
+
}
|
|
1151
|
+
},
|
|
1152
|
+
"description": "list costumes and accessoires in wardrobe",
|
|
1148
1153
|
"examples": [
|
|
1149
|
-
"
|
|
1150
|
-
"
|
|
1154
|
+
"eggs wardrobe list",
|
|
1155
|
+
"eggs wardrobe list your-wardrobe",
|
|
1156
|
+
"eggs wardrobe list --distro arch"
|
|
1151
1157
|
],
|
|
1152
1158
|
"flags": {
|
|
1153
|
-
"
|
|
1154
|
-
"char": "
|
|
1155
|
-
"description": "
|
|
1156
|
-
"name": "
|
|
1157
|
-
"
|
|
1158
|
-
"
|
|
1159
|
+
"distro": {
|
|
1160
|
+
"char": "d",
|
|
1161
|
+
"description": "distro",
|
|
1162
|
+
"name": "distro",
|
|
1163
|
+
"hasDynamicHelp": false,
|
|
1164
|
+
"multiple": false,
|
|
1165
|
+
"type": "option"
|
|
1159
1166
|
},
|
|
1160
1167
|
"help": {
|
|
1161
1168
|
"char": "h",
|
|
@@ -1164,23 +1171,8 @@
|
|
|
1164
1171
|
"allowNo": false,
|
|
1165
1172
|
"type": "boolean"
|
|
1166
1173
|
},
|
|
1167
|
-
"nointeractive": {
|
|
1168
|
-
"char": "n",
|
|
1169
|
-
"description": "no user interaction",
|
|
1170
|
-
"name": "nointeractive",
|
|
1171
|
-
"allowNo": false,
|
|
1172
|
-
"type": "boolean"
|
|
1173
|
-
},
|
|
1174
|
-
"remove": {
|
|
1175
|
-
"char": "r",
|
|
1176
|
-
"description": "remove penguins-repos",
|
|
1177
|
-
"name": "remove",
|
|
1178
|
-
"allowNo": false,
|
|
1179
|
-
"type": "boolean"
|
|
1180
|
-
},
|
|
1181
1174
|
"verbose": {
|
|
1182
1175
|
"char": "v",
|
|
1183
|
-
"description": "verbose",
|
|
1184
1176
|
"name": "verbose",
|
|
1185
1177
|
"allowNo": false,
|
|
1186
1178
|
"type": "boolean"
|
|
@@ -1188,7 +1180,7 @@
|
|
|
1188
1180
|
},
|
|
1189
1181
|
"hasDynamicHelp": false,
|
|
1190
1182
|
"hiddenAliases": [],
|
|
1191
|
-
"id": "
|
|
1183
|
+
"id": "wardrobe:list",
|
|
1192
1184
|
"pluginAlias": "penguins-eggs",
|
|
1193
1185
|
"pluginName": "penguins-eggs",
|
|
1194
1186
|
"pluginType": "core",
|
|
@@ -1198,17 +1190,24 @@
|
|
|
1198
1190
|
"relativePath": [
|
|
1199
1191
|
"dist",
|
|
1200
1192
|
"commands",
|
|
1201
|
-
"
|
|
1202
|
-
"
|
|
1193
|
+
"wardrobe",
|
|
1194
|
+
"list.js"
|
|
1203
1195
|
]
|
|
1204
1196
|
},
|
|
1205
|
-
"
|
|
1197
|
+
"wardrobe:show": {
|
|
1206
1198
|
"aliases": [],
|
|
1207
|
-
"args": {
|
|
1208
|
-
|
|
1199
|
+
"args": {
|
|
1200
|
+
"repo": {
|
|
1201
|
+
"description": "costume to show",
|
|
1202
|
+
"name": "repo",
|
|
1203
|
+
"required": false
|
|
1204
|
+
}
|
|
1205
|
+
},
|
|
1206
|
+
"description": "show costumes/accessories in wardrobe",
|
|
1209
1207
|
"examples": [
|
|
1210
|
-
"
|
|
1211
|
-
"
|
|
1208
|
+
"eggs wardrobe show colibri",
|
|
1209
|
+
"eggs wardrobe show accessories/firmwares",
|
|
1210
|
+
"eggs wardrobe show accessories/"
|
|
1212
1211
|
],
|
|
1213
1212
|
"flags": {
|
|
1214
1213
|
"help": {
|
|
@@ -1218,45 +1217,63 @@
|
|
|
1218
1217
|
"allowNo": false,
|
|
1219
1218
|
"type": "boolean"
|
|
1220
1219
|
},
|
|
1221
|
-
"
|
|
1222
|
-
"char": "
|
|
1223
|
-
"description": "
|
|
1224
|
-
"name": "
|
|
1225
|
-
"
|
|
1226
|
-
"
|
|
1227
|
-
"type": "option"
|
|
1220
|
+
"json": {
|
|
1221
|
+
"char": "j",
|
|
1222
|
+
"description": "output JSON",
|
|
1223
|
+
"name": "json",
|
|
1224
|
+
"allowNo": false,
|
|
1225
|
+
"type": "boolean"
|
|
1228
1226
|
},
|
|
1229
1227
|
"verbose": {
|
|
1230
1228
|
"char": "v",
|
|
1231
1229
|
"name": "verbose",
|
|
1232
1230
|
"allowNo": false,
|
|
1233
1231
|
"type": "boolean"
|
|
1232
|
+
},
|
|
1233
|
+
"wardrobe": {
|
|
1234
|
+
"char": "w",
|
|
1235
|
+
"description": "wardrobe",
|
|
1236
|
+
"name": "wardrobe",
|
|
1237
|
+
"hasDynamicHelp": false,
|
|
1238
|
+
"multiple": false,
|
|
1239
|
+
"type": "option"
|
|
1234
1240
|
}
|
|
1235
1241
|
},
|
|
1236
1242
|
"hasDynamicHelp": false,
|
|
1237
1243
|
"hiddenAliases": [],
|
|
1238
|
-
"id": "
|
|
1244
|
+
"id": "wardrobe:show",
|
|
1239
1245
|
"pluginAlias": "penguins-eggs",
|
|
1240
1246
|
"pluginName": "penguins-eggs",
|
|
1241
1247
|
"pluginType": "core",
|
|
1242
1248
|
"strict": true,
|
|
1243
1249
|
"enableJsonFlag": false,
|
|
1250
|
+
"example": [
|
|
1251
|
+
"eggs wardrobe show colibri",
|
|
1252
|
+
"eggs wardrobe show accessories/firmwares",
|
|
1253
|
+
"eggs wardrobe show accessories/"
|
|
1254
|
+
],
|
|
1244
1255
|
"isESM": true,
|
|
1245
1256
|
"relativePath": [
|
|
1246
1257
|
"dist",
|
|
1247
1258
|
"commands",
|
|
1248
|
-
"
|
|
1249
|
-
"
|
|
1259
|
+
"wardrobe",
|
|
1260
|
+
"show.js"
|
|
1250
1261
|
]
|
|
1251
1262
|
},
|
|
1252
|
-
"
|
|
1263
|
+
"wardrobe:wear": {
|
|
1253
1264
|
"aliases": [],
|
|
1254
|
-
"args": {
|
|
1255
|
-
|
|
1265
|
+
"args": {
|
|
1266
|
+
"repo": {
|
|
1267
|
+
"description": "costume to wear",
|
|
1268
|
+
"name": "repo",
|
|
1269
|
+
"required": false
|
|
1270
|
+
}
|
|
1271
|
+
},
|
|
1272
|
+
"description": "wear costume/accessories from wardrobe",
|
|
1256
1273
|
"examples": [
|
|
1257
|
-
"eggs
|
|
1258
|
-
"eggs
|
|
1259
|
-
"eggs
|
|
1274
|
+
"sudo eggs wardrobe wear duck",
|
|
1275
|
+
"sudo eggs wardrobe wear accessories/firmwares",
|
|
1276
|
+
"sudo eggs wardrobe wear wagtail/waydroid"
|
|
1260
1277
|
],
|
|
1261
1278
|
"flags": {
|
|
1262
1279
|
"help": {
|
|
@@ -1266,24 +1283,38 @@
|
|
|
1266
1283
|
"allowNo": false,
|
|
1267
1284
|
"type": "boolean"
|
|
1268
1285
|
},
|
|
1269
|
-
"
|
|
1270
|
-
"char": "
|
|
1271
|
-
"description": "
|
|
1272
|
-
"name": "
|
|
1286
|
+
"no_accessories": {
|
|
1287
|
+
"char": "a",
|
|
1288
|
+
"description": "not install accessories",
|
|
1289
|
+
"name": "no_accessories",
|
|
1273
1290
|
"allowNo": false,
|
|
1274
1291
|
"type": "boolean"
|
|
1275
1292
|
},
|
|
1276
|
-
"
|
|
1277
|
-
"char": "
|
|
1278
|
-
"description": "
|
|
1279
|
-
"name": "
|
|
1293
|
+
"no_firmwares": {
|
|
1294
|
+
"char": "f",
|
|
1295
|
+
"description": "not install firmwares",
|
|
1296
|
+
"name": "no_firmwares",
|
|
1280
1297
|
"allowNo": false,
|
|
1281
1298
|
"type": "boolean"
|
|
1299
|
+
},
|
|
1300
|
+
"verbose": {
|
|
1301
|
+
"char": "v",
|
|
1302
|
+
"name": "verbose",
|
|
1303
|
+
"allowNo": false,
|
|
1304
|
+
"type": "boolean"
|
|
1305
|
+
},
|
|
1306
|
+
"wardrobe": {
|
|
1307
|
+
"char": "w",
|
|
1308
|
+
"description": "wardrobe",
|
|
1309
|
+
"name": "wardrobe",
|
|
1310
|
+
"hasDynamicHelp": false,
|
|
1311
|
+
"multiple": false,
|
|
1312
|
+
"type": "option"
|
|
1282
1313
|
}
|
|
1283
1314
|
},
|
|
1284
1315
|
"hasDynamicHelp": false,
|
|
1285
1316
|
"hiddenAliases": [],
|
|
1286
|
-
"id": "
|
|
1317
|
+
"id": "wardrobe:wear",
|
|
1287
1318
|
"pluginAlias": "penguins-eggs",
|
|
1288
1319
|
"pluginName": "penguins-eggs",
|
|
1289
1320
|
"pluginType": "core",
|
|
@@ -1293,16 +1324,16 @@
|
|
|
1293
1324
|
"relativePath": [
|
|
1294
1325
|
"dist",
|
|
1295
1326
|
"commands",
|
|
1296
|
-
"
|
|
1297
|
-
"
|
|
1327
|
+
"wardrobe",
|
|
1328
|
+
"wear.js"
|
|
1298
1329
|
]
|
|
1299
1330
|
},
|
|
1300
|
-
"tools:
|
|
1331
|
+
"tools:clean": {
|
|
1301
1332
|
"aliases": [],
|
|
1302
1333
|
"args": {},
|
|
1303
|
-
"description": "
|
|
1334
|
+
"description": "clean system log, apt, etc",
|
|
1304
1335
|
"examples": [
|
|
1305
|
-
"sudo eggs tools
|
|
1336
|
+
"sudo eggs tools clean"
|
|
1306
1337
|
],
|
|
1307
1338
|
"flags": {
|
|
1308
1339
|
"help": {
|
|
@@ -1312,8 +1343,16 @@
|
|
|
1312
1343
|
"allowNo": false,
|
|
1313
1344
|
"type": "boolean"
|
|
1314
1345
|
},
|
|
1346
|
+
"nointeractive": {
|
|
1347
|
+
"char": "n",
|
|
1348
|
+
"description": "no user interaction",
|
|
1349
|
+
"name": "nointeractive",
|
|
1350
|
+
"allowNo": false,
|
|
1351
|
+
"type": "boolean"
|
|
1352
|
+
},
|
|
1315
1353
|
"verbose": {
|
|
1316
1354
|
"char": "v",
|
|
1355
|
+
"description": "verbose",
|
|
1317
1356
|
"name": "verbose",
|
|
1318
1357
|
"allowNo": false,
|
|
1319
1358
|
"type": "boolean"
|
|
@@ -1321,36 +1360,36 @@
|
|
|
1321
1360
|
},
|
|
1322
1361
|
"hasDynamicHelp": false,
|
|
1323
1362
|
"hiddenAliases": [],
|
|
1324
|
-
"id": "tools:
|
|
1363
|
+
"id": "tools:clean",
|
|
1325
1364
|
"pluginAlias": "penguins-eggs",
|
|
1326
1365
|
"pluginName": "penguins-eggs",
|
|
1327
1366
|
"pluginType": "core",
|
|
1328
1367
|
"strict": true,
|
|
1329
1368
|
"enableJsonFlag": false,
|
|
1330
|
-
"dir": "/var/local/yolk",
|
|
1331
1369
|
"isESM": true,
|
|
1332
1370
|
"relativePath": [
|
|
1333
1371
|
"dist",
|
|
1334
1372
|
"commands",
|
|
1335
1373
|
"tools",
|
|
1336
|
-
"
|
|
1374
|
+
"clean.js"
|
|
1337
1375
|
]
|
|
1338
1376
|
},
|
|
1339
|
-
"
|
|
1377
|
+
"tools:repo": {
|
|
1340
1378
|
"aliases": [],
|
|
1341
|
-
"args": {
|
|
1342
|
-
|
|
1343
|
-
"description": "repository to get",
|
|
1344
|
-
"name": "repo",
|
|
1345
|
-
"required": false
|
|
1346
|
-
}
|
|
1347
|
-
},
|
|
1348
|
-
"description": "get warorobe",
|
|
1379
|
+
"args": {},
|
|
1380
|
+
"description": "add/remove penguins-repos",
|
|
1349
1381
|
"examples": [
|
|
1350
|
-
"eggs
|
|
1351
|
-
"eggs
|
|
1382
|
+
"sudo eggs tools repo --add",
|
|
1383
|
+
"sudo eggs tools repo --remove"
|
|
1352
1384
|
],
|
|
1353
1385
|
"flags": {
|
|
1386
|
+
"add": {
|
|
1387
|
+
"char": "a",
|
|
1388
|
+
"description": "add penguins-repos",
|
|
1389
|
+
"name": "add",
|
|
1390
|
+
"allowNo": false,
|
|
1391
|
+
"type": "boolean"
|
|
1392
|
+
},
|
|
1354
1393
|
"help": {
|
|
1355
1394
|
"char": "h",
|
|
1356
1395
|
"description": "Show CLI help.",
|
|
@@ -1358,8 +1397,23 @@
|
|
|
1358
1397
|
"allowNo": false,
|
|
1359
1398
|
"type": "boolean"
|
|
1360
1399
|
},
|
|
1400
|
+
"nointeractive": {
|
|
1401
|
+
"char": "n",
|
|
1402
|
+
"description": "no user interaction",
|
|
1403
|
+
"name": "nointeractive",
|
|
1404
|
+
"allowNo": false,
|
|
1405
|
+
"type": "boolean"
|
|
1406
|
+
},
|
|
1407
|
+
"remove": {
|
|
1408
|
+
"char": "r",
|
|
1409
|
+
"description": "remove penguins-repos",
|
|
1410
|
+
"name": "remove",
|
|
1411
|
+
"allowNo": false,
|
|
1412
|
+
"type": "boolean"
|
|
1413
|
+
},
|
|
1361
1414
|
"verbose": {
|
|
1362
1415
|
"char": "v",
|
|
1416
|
+
"description": "verbose",
|
|
1363
1417
|
"name": "verbose",
|
|
1364
1418
|
"allowNo": false,
|
|
1365
1419
|
"type": "boolean"
|
|
@@ -1367,7 +1421,7 @@
|
|
|
1367
1421
|
},
|
|
1368
1422
|
"hasDynamicHelp": false,
|
|
1369
1423
|
"hiddenAliases": [],
|
|
1370
|
-
"id": "
|
|
1424
|
+
"id": "tools:repo",
|
|
1371
1425
|
"pluginAlias": "penguins-eggs",
|
|
1372
1426
|
"pluginName": "penguins-eggs",
|
|
1373
1427
|
"pluginType": "core",
|
|
@@ -1377,34 +1431,19 @@
|
|
|
1377
1431
|
"relativePath": [
|
|
1378
1432
|
"dist",
|
|
1379
1433
|
"commands",
|
|
1380
|
-
"
|
|
1381
|
-
"
|
|
1434
|
+
"tools",
|
|
1435
|
+
"repo.js"
|
|
1382
1436
|
]
|
|
1383
1437
|
},
|
|
1384
|
-
"
|
|
1438
|
+
"tools:skel": {
|
|
1385
1439
|
"aliases": [],
|
|
1386
|
-
"args": {
|
|
1387
|
-
|
|
1388
|
-
"description": "wardrobe to get",
|
|
1389
|
-
"name": "repo",
|
|
1390
|
-
"required": false
|
|
1391
|
-
}
|
|
1392
|
-
},
|
|
1393
|
-
"description": "list costumes and accessoires in wardrobe",
|
|
1440
|
+
"args": {},
|
|
1441
|
+
"description": "update skel from home configuration",
|
|
1394
1442
|
"examples": [
|
|
1395
|
-
"eggs
|
|
1396
|
-
"eggs
|
|
1397
|
-
"eggs wardrobe list --distro arch"
|
|
1443
|
+
"sudo eggs tools skel",
|
|
1444
|
+
"sudo eggs tools skel --user user-to-be-copied"
|
|
1398
1445
|
],
|
|
1399
1446
|
"flags": {
|
|
1400
|
-
"distro": {
|
|
1401
|
-
"char": "d",
|
|
1402
|
-
"description": "distro",
|
|
1403
|
-
"name": "distro",
|
|
1404
|
-
"hasDynamicHelp": false,
|
|
1405
|
-
"multiple": false,
|
|
1406
|
-
"type": "option"
|
|
1407
|
-
},
|
|
1408
1447
|
"help": {
|
|
1409
1448
|
"char": "h",
|
|
1410
1449
|
"description": "Show CLI help.",
|
|
@@ -1412,6 +1451,14 @@
|
|
|
1412
1451
|
"allowNo": false,
|
|
1413
1452
|
"type": "boolean"
|
|
1414
1453
|
},
|
|
1454
|
+
"user": {
|
|
1455
|
+
"char": "u",
|
|
1456
|
+
"description": "user to be used",
|
|
1457
|
+
"name": "user",
|
|
1458
|
+
"hasDynamicHelp": false,
|
|
1459
|
+
"multiple": false,
|
|
1460
|
+
"type": "option"
|
|
1461
|
+
},
|
|
1415
1462
|
"verbose": {
|
|
1416
1463
|
"char": "v",
|
|
1417
1464
|
"name": "verbose",
|
|
@@ -1421,7 +1468,7 @@
|
|
|
1421
1468
|
},
|
|
1422
1469
|
"hasDynamicHelp": false,
|
|
1423
1470
|
"hiddenAliases": [],
|
|
1424
|
-
"id": "
|
|
1471
|
+
"id": "tools:skel",
|
|
1425
1472
|
"pluginAlias": "penguins-eggs",
|
|
1426
1473
|
"pluginName": "penguins-eggs",
|
|
1427
1474
|
"pluginType": "core",
|
|
@@ -1431,24 +1478,18 @@
|
|
|
1431
1478
|
"relativePath": [
|
|
1432
1479
|
"dist",
|
|
1433
1480
|
"commands",
|
|
1434
|
-
"
|
|
1435
|
-
"
|
|
1481
|
+
"tools",
|
|
1482
|
+
"skel.js"
|
|
1436
1483
|
]
|
|
1437
1484
|
},
|
|
1438
|
-
"
|
|
1485
|
+
"tools:stat": {
|
|
1439
1486
|
"aliases": [],
|
|
1440
|
-
"args": {
|
|
1441
|
-
|
|
1442
|
-
"description": "costume to show",
|
|
1443
|
-
"name": "repo",
|
|
1444
|
-
"required": false
|
|
1445
|
-
}
|
|
1446
|
-
},
|
|
1447
|
-
"description": "show costumes/accessories in wardrobe",
|
|
1487
|
+
"args": {},
|
|
1488
|
+
"description": "get statistics from sourceforge",
|
|
1448
1489
|
"examples": [
|
|
1449
|
-
"eggs
|
|
1450
|
-
"eggs
|
|
1451
|
-
"eggs
|
|
1490
|
+
"eggs tools stat",
|
|
1491
|
+
"eggs tools stat --month",
|
|
1492
|
+
"eggs tools stat --year"
|
|
1452
1493
|
],
|
|
1453
1494
|
"flags": {
|
|
1454
1495
|
"help": {
|
|
@@ -1458,63 +1499,43 @@
|
|
|
1458
1499
|
"allowNo": false,
|
|
1459
1500
|
"type": "boolean"
|
|
1460
1501
|
},
|
|
1461
|
-
"
|
|
1462
|
-
"char": "
|
|
1463
|
-
"description": "
|
|
1464
|
-
"name": "
|
|
1502
|
+
"month": {
|
|
1503
|
+
"char": "m",
|
|
1504
|
+
"description": "current month",
|
|
1505
|
+
"name": "month",
|
|
1465
1506
|
"allowNo": false,
|
|
1466
1507
|
"type": "boolean"
|
|
1467
1508
|
},
|
|
1468
|
-
"
|
|
1469
|
-
"char": "
|
|
1470
|
-
"
|
|
1509
|
+
"year": {
|
|
1510
|
+
"char": "y",
|
|
1511
|
+
"description": "current year",
|
|
1512
|
+
"name": "year",
|
|
1471
1513
|
"allowNo": false,
|
|
1472
1514
|
"type": "boolean"
|
|
1473
|
-
},
|
|
1474
|
-
"wardrobe": {
|
|
1475
|
-
"char": "w",
|
|
1476
|
-
"description": "wardrobe",
|
|
1477
|
-
"name": "wardrobe",
|
|
1478
|
-
"hasDynamicHelp": false,
|
|
1479
|
-
"multiple": false,
|
|
1480
|
-
"type": "option"
|
|
1481
1515
|
}
|
|
1482
1516
|
},
|
|
1483
1517
|
"hasDynamicHelp": false,
|
|
1484
1518
|
"hiddenAliases": [],
|
|
1485
|
-
"id": "
|
|
1519
|
+
"id": "tools:stat",
|
|
1486
1520
|
"pluginAlias": "penguins-eggs",
|
|
1487
1521
|
"pluginName": "penguins-eggs",
|
|
1488
1522
|
"pluginType": "core",
|
|
1489
1523
|
"strict": true,
|
|
1490
1524
|
"enableJsonFlag": false,
|
|
1491
|
-
"example": [
|
|
1492
|
-
"eggs wardrobe show colibri",
|
|
1493
|
-
"eggs wardrobe show accessories/firmwares",
|
|
1494
|
-
"eggs wardrobe show accessories/"
|
|
1495
|
-
],
|
|
1496
1525
|
"isESM": true,
|
|
1497
1526
|
"relativePath": [
|
|
1498
1527
|
"dist",
|
|
1499
1528
|
"commands",
|
|
1500
|
-
"
|
|
1501
|
-
"
|
|
1529
|
+
"tools",
|
|
1530
|
+
"stat.js"
|
|
1502
1531
|
]
|
|
1503
1532
|
},
|
|
1504
|
-
"
|
|
1533
|
+
"tools:yolk": {
|
|
1505
1534
|
"aliases": [],
|
|
1506
|
-
"args": {
|
|
1507
|
-
|
|
1508
|
-
"description": "costume to wear",
|
|
1509
|
-
"name": "repo",
|
|
1510
|
-
"required": false
|
|
1511
|
-
}
|
|
1512
|
-
},
|
|
1513
|
-
"description": "wear costume/accessories from wardrobe",
|
|
1535
|
+
"args": {},
|
|
1536
|
+
"description": "configure eggs to install without internet",
|
|
1514
1537
|
"examples": [
|
|
1515
|
-
"sudo eggs
|
|
1516
|
-
"sudo eggs wardrobe wear accessories/firmwares",
|
|
1517
|
-
"sudo eggs wardrobe wear wagtail/waydroid"
|
|
1538
|
+
"sudo eggs tools yolk"
|
|
1518
1539
|
],
|
|
1519
1540
|
"flags": {
|
|
1520
1541
|
"help": {
|
|
@@ -1524,51 +1545,30 @@
|
|
|
1524
1545
|
"allowNo": false,
|
|
1525
1546
|
"type": "boolean"
|
|
1526
1547
|
},
|
|
1527
|
-
"no_accessories": {
|
|
1528
|
-
"char": "a",
|
|
1529
|
-
"description": "not install accessories",
|
|
1530
|
-
"name": "no_accessories",
|
|
1531
|
-
"allowNo": false,
|
|
1532
|
-
"type": "boolean"
|
|
1533
|
-
},
|
|
1534
|
-
"no_firmwares": {
|
|
1535
|
-
"char": "f",
|
|
1536
|
-
"description": "not install firmwares",
|
|
1537
|
-
"name": "no_firmwares",
|
|
1538
|
-
"allowNo": false,
|
|
1539
|
-
"type": "boolean"
|
|
1540
|
-
},
|
|
1541
1548
|
"verbose": {
|
|
1542
1549
|
"char": "v",
|
|
1543
1550
|
"name": "verbose",
|
|
1544
1551
|
"allowNo": false,
|
|
1545
1552
|
"type": "boolean"
|
|
1546
|
-
},
|
|
1547
|
-
"wardrobe": {
|
|
1548
|
-
"char": "w",
|
|
1549
|
-
"description": "wardrobe",
|
|
1550
|
-
"name": "wardrobe",
|
|
1551
|
-
"hasDynamicHelp": false,
|
|
1552
|
-
"multiple": false,
|
|
1553
|
-
"type": "option"
|
|
1554
1553
|
}
|
|
1555
1554
|
},
|
|
1556
1555
|
"hasDynamicHelp": false,
|
|
1557
1556
|
"hiddenAliases": [],
|
|
1558
|
-
"id": "
|
|
1557
|
+
"id": "tools:yolk",
|
|
1559
1558
|
"pluginAlias": "penguins-eggs",
|
|
1560
1559
|
"pluginName": "penguins-eggs",
|
|
1561
1560
|
"pluginType": "core",
|
|
1562
1561
|
"strict": true,
|
|
1563
1562
|
"enableJsonFlag": false,
|
|
1563
|
+
"dir": "/var/local/yolk",
|
|
1564
1564
|
"isESM": true,
|
|
1565
1565
|
"relativePath": [
|
|
1566
1566
|
"dist",
|
|
1567
1567
|
"commands",
|
|
1568
|
-
"
|
|
1569
|
-
"
|
|
1568
|
+
"tools",
|
|
1569
|
+
"yolk.js"
|
|
1570
1570
|
]
|
|
1571
1571
|
}
|
|
1572
1572
|
},
|
|
1573
|
-
"version": "
|
|
1573
|
+
"version": "26.1.3"
|
|
1574
1574
|
}
|