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