penguins-eggs 10.0.1 → 10.0.2
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 +1 -1
- package/README.md +29 -29
- package/manpages/doc/man/eggs.1.gz +0 -0
- package/manpages/doc/man/eggs.html +3 -3
- package/package.json +7 -5
- package/scripts/resy +10 -6
package/.oclif.manifest.json
CHANGED
package/README.md
CHANGED
|
@@ -15,7 +15,7 @@ penguins-eggs
|
|
|
15
15
|
# Index
|
|
16
16
|
<!-- toc -->
|
|
17
17
|
* [Index](#index)
|
|
18
|
-
* [
|
|
18
|
+
* [penguins-eggs-10.0.0](#penguins-eggs-1000)
|
|
19
19
|
* [Introduction](#introduction)
|
|
20
20
|
* [Technology](#technology)
|
|
21
21
|
* [Features](#features)
|
|
@@ -26,8 +26,8 @@ penguins-eggs
|
|
|
26
26
|
* [Copyright and licenses](#copyright-and-licenses)
|
|
27
27
|
<!-- tocstop -->
|
|
28
28
|
|
|
29
|
-
#
|
|
30
|
-
With version 10.0.0 we celebrate more than 8 years of penguins-eggs development! Come with us, the time is right.
|
|
29
|
+
# penguins-eggs-10.0.0
|
|
30
|
+
With [penguins-eggs version 10.0.0](https://github.com/pieroproietti/penguins-eggs/blob/master/CHANGELOG.md#penguins-eggs-1000) we celebrate more than 8 years of penguins-eggs development! Come with us, the time is right.
|
|
31
31
|
|
|
32
32
|
# Introduction
|
|
33
33
|
penguins-eggs is a console tool, under continuous development, that allows you to remaster your system and redistribute it as live images on USB sticks or via PXE. The concept behind Penguins’ Eggs stems from the idea of “reproduction” and “population selection” applied to operating systems. During the era of popular remastering programs like Remastersys and Systemback, both of which experienced maintenance issues and were eventually abandoned, the need for a new, modern tool became evident. The inspiration for Penguins’ Eggs led to the development of a new tool written in a modern, cross-distribution language, utilizing its own packaging system. Initially built with node.js and later transitioning to Typescript as the primary development language, the tool’s design resembles an egg production process, consisting of operations such as “produce” for creating the eggs, “hatch” for installation, and other commands like “kill” for removing produced ISOs, “update” for software updates, and “install” for configuring the graphical installer. It also has prerequisites to install the .deb packages necessary for the process, namely, calamares.
|
|
@@ -444,7 +444,7 @@ EXAMPLES
|
|
|
444
444
|
$ eggs adapt
|
|
445
445
|
```
|
|
446
446
|
|
|
447
|
-
_See code: [src/commands/adapt.ts](https://github.com/pieroproietti/
|
|
447
|
+
_See code: [src/commands/adapt.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.2/src/commands/adapt.ts)_
|
|
448
448
|
|
|
449
449
|
## `eggs analyze`
|
|
450
450
|
|
|
@@ -465,7 +465,7 @@ EXAMPLES
|
|
|
465
465
|
sudo eggs analyze
|
|
466
466
|
```
|
|
467
467
|
|
|
468
|
-
_See code: [src/commands/analyze.ts](https://github.com/pieroproietti/
|
|
468
|
+
_See code: [src/commands/analyze.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.2/src/commands/analyze.ts)_
|
|
469
469
|
|
|
470
470
|
## `eggs autocomplete [SHELL]`
|
|
471
471
|
|
|
@@ -496,7 +496,7 @@ EXAMPLES
|
|
|
496
496
|
$ eggs autocomplete --refresh-cache
|
|
497
497
|
```
|
|
498
498
|
|
|
499
|
-
_See code: [@oclif/plugin-autocomplete](https://github.com/oclif/plugin-autocomplete/blob/v3.1.
|
|
499
|
+
_See code: [@oclif/plugin-autocomplete](https://github.com/oclif/plugin-autocomplete/blob/v3.1.1/src/commands/autocomplete/index.ts)_
|
|
500
500
|
|
|
501
501
|
## `eggs calamares`
|
|
502
502
|
|
|
@@ -529,7 +529,7 @@ EXAMPLES
|
|
|
529
529
|
sudo eggs calamares --remove
|
|
530
530
|
```
|
|
531
531
|
|
|
532
|
-
_See code: [src/commands/calamares.ts](https://github.com/pieroproietti/
|
|
532
|
+
_See code: [src/commands/calamares.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.2/src/commands/calamares.ts)_
|
|
533
533
|
|
|
534
534
|
## `eggs config`
|
|
535
535
|
|
|
@@ -557,7 +557,7 @@ EXAMPLES
|
|
|
557
557
|
sudo eggs config --clean --nointeractive
|
|
558
558
|
```
|
|
559
559
|
|
|
560
|
-
_See code: [src/commands/config.ts](https://github.com/pieroproietti/
|
|
560
|
+
_See code: [src/commands/config.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.2/src/commands/config.ts)_
|
|
561
561
|
|
|
562
562
|
## `eggs cuckoo`
|
|
563
563
|
|
|
@@ -577,7 +577,7 @@ EXAMPLES
|
|
|
577
577
|
sudo eggs cuckoo
|
|
578
578
|
```
|
|
579
579
|
|
|
580
|
-
_See code: [src/commands/cuckoo.ts](https://github.com/pieroproietti/
|
|
580
|
+
_See code: [src/commands/cuckoo.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.2/src/commands/cuckoo.ts)_
|
|
581
581
|
|
|
582
582
|
## `eggs dad`
|
|
583
583
|
|
|
@@ -604,7 +604,7 @@ EXAMPLES
|
|
|
604
604
|
sudo dad --default
|
|
605
605
|
```
|
|
606
606
|
|
|
607
|
-
_See code: [src/commands/dad.ts](https://github.com/pieroproietti/
|
|
607
|
+
_See code: [src/commands/dad.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.2/src/commands/dad.ts)_
|
|
608
608
|
|
|
609
609
|
## `eggs export deb`
|
|
610
610
|
|
|
@@ -631,7 +631,7 @@ EXAMPLES
|
|
|
631
631
|
$ eggs export deb --all
|
|
632
632
|
```
|
|
633
633
|
|
|
634
|
-
_See code: [src/commands/export/deb.ts](https://github.com/pieroproietti/
|
|
634
|
+
_See code: [src/commands/export/deb.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.2/src/commands/export/deb.ts)_
|
|
635
635
|
|
|
636
636
|
## `eggs export iso`
|
|
637
637
|
|
|
@@ -656,7 +656,7 @@ EXAMPLES
|
|
|
656
656
|
$ eggs export iso --clean
|
|
657
657
|
```
|
|
658
658
|
|
|
659
|
-
_See code: [src/commands/export/iso.ts](https://github.com/pieroproietti/
|
|
659
|
+
_See code: [src/commands/export/iso.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.2/src/commands/export/iso.ts)_
|
|
660
660
|
|
|
661
661
|
## `eggs help [COMMAND]`
|
|
662
662
|
|
|
@@ -717,7 +717,7 @@ EXAMPLES
|
|
|
717
717
|
sudo eggs install --custom it
|
|
718
718
|
```
|
|
719
719
|
|
|
720
|
-
_See code: [src/commands/install.ts](https://github.com/pieroproietti/
|
|
720
|
+
_See code: [src/commands/install.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.2/src/commands/install.ts)_
|
|
721
721
|
|
|
722
722
|
## `eggs kill`
|
|
723
723
|
|
|
@@ -740,7 +740,7 @@ EXAMPLES
|
|
|
740
740
|
sudo eggs kill
|
|
741
741
|
```
|
|
742
742
|
|
|
743
|
-
_See code: [src/commands/kill.ts](https://github.com/pieroproietti/
|
|
743
|
+
_See code: [src/commands/kill.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.2/src/commands/kill.ts)_
|
|
744
744
|
|
|
745
745
|
## `eggs krill`
|
|
746
746
|
|
|
@@ -799,7 +799,7 @@ EXAMPLES
|
|
|
799
799
|
$ eggs mom
|
|
800
800
|
```
|
|
801
801
|
|
|
802
|
-
_See code: [src/commands/mom.ts](https://github.com/pieroproietti/
|
|
802
|
+
_See code: [src/commands/mom.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.2/src/commands/mom.ts)_
|
|
803
803
|
|
|
804
804
|
## `eggs produce`
|
|
805
805
|
|
|
@@ -855,7 +855,7 @@ EXAMPLES
|
|
|
855
855
|
sudo eggs produce --excludes=static
|
|
856
856
|
```
|
|
857
857
|
|
|
858
|
-
_See code: [src/commands/produce.ts](https://github.com/pieroproietti/
|
|
858
|
+
_See code: [src/commands/produce.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.2/src/commands/produce.ts)_
|
|
859
859
|
|
|
860
860
|
## `eggs status`
|
|
861
861
|
|
|
@@ -876,7 +876,7 @@ EXAMPLES
|
|
|
876
876
|
$ eggs status
|
|
877
877
|
```
|
|
878
878
|
|
|
879
|
-
_See code: [src/commands/status.ts](https://github.com/pieroproietti/
|
|
879
|
+
_See code: [src/commands/status.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.2/src/commands/status.ts)_
|
|
880
880
|
|
|
881
881
|
## `eggs syncfrom`
|
|
882
882
|
|
|
@@ -902,7 +902,7 @@ EXAMPLES
|
|
|
902
902
|
sudo eggs syncfrom --file /path/to/luks-volume
|
|
903
903
|
```
|
|
904
904
|
|
|
905
|
-
_See code: [src/commands/syncfrom.ts](https://github.com/pieroproietti/
|
|
905
|
+
_See code: [src/commands/syncfrom.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.2/src/commands/syncfrom.ts)_
|
|
906
906
|
|
|
907
907
|
## `eggs syncto`
|
|
908
908
|
|
|
@@ -929,7 +929,7 @@ EXAMPLES
|
|
|
929
929
|
sudo eggs syncto --excludes
|
|
930
930
|
```
|
|
931
931
|
|
|
932
|
-
_See code: [src/commands/syncto.ts](https://github.com/pieroproietti/
|
|
932
|
+
_See code: [src/commands/syncto.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.2/src/commands/syncto.ts)_
|
|
933
933
|
|
|
934
934
|
## `eggs tools clean`
|
|
935
935
|
|
|
@@ -951,7 +951,7 @@ EXAMPLES
|
|
|
951
951
|
sudo eggs tools clean
|
|
952
952
|
```
|
|
953
953
|
|
|
954
|
-
_See code: [src/commands/tools/clean.ts](https://github.com/pieroproietti/
|
|
954
|
+
_See code: [src/commands/tools/clean.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.2/src/commands/tools/clean.ts)_
|
|
955
955
|
|
|
956
956
|
## `eggs tools ppa`
|
|
957
957
|
|
|
@@ -977,7 +977,7 @@ EXAMPLES
|
|
|
977
977
|
sudo eggs tools ppa --remove
|
|
978
978
|
```
|
|
979
979
|
|
|
980
|
-
_See code: [src/commands/tools/ppa.ts](https://github.com/pieroproietti/
|
|
980
|
+
_See code: [src/commands/tools/ppa.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.2/src/commands/tools/ppa.ts)_
|
|
981
981
|
|
|
982
982
|
## `eggs tools skel`
|
|
983
983
|
|
|
@@ -1001,7 +1001,7 @@ EXAMPLES
|
|
|
1001
1001
|
sudo eggs tools skel --user user-to-be-copied
|
|
1002
1002
|
```
|
|
1003
1003
|
|
|
1004
|
-
_See code: [src/commands/tools/skel.ts](https://github.com/pieroproietti/
|
|
1004
|
+
_See code: [src/commands/tools/skel.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.2/src/commands/tools/skel.ts)_
|
|
1005
1005
|
|
|
1006
1006
|
## `eggs tools stat`
|
|
1007
1007
|
|
|
@@ -1027,7 +1027,7 @@ EXAMPLES
|
|
|
1027
1027
|
$ eggs tools stat --year
|
|
1028
1028
|
```
|
|
1029
1029
|
|
|
1030
|
-
_See code: [src/commands/tools/stat.ts](https://github.com/pieroproietti/
|
|
1030
|
+
_See code: [src/commands/tools/stat.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.2/src/commands/tools/stat.ts)_
|
|
1031
1031
|
|
|
1032
1032
|
## `eggs tools yolk`
|
|
1033
1033
|
|
|
@@ -1048,7 +1048,7 @@ EXAMPLES
|
|
|
1048
1048
|
sudo eggs tools yolk
|
|
1049
1049
|
```
|
|
1050
1050
|
|
|
1051
|
-
_See code: [src/commands/tools/yolk.ts](https://github.com/pieroproietti/
|
|
1051
|
+
_See code: [src/commands/tools/yolk.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.2/src/commands/tools/yolk.ts)_
|
|
1052
1052
|
|
|
1053
1053
|
## `eggs update`
|
|
1054
1054
|
|
|
@@ -1069,7 +1069,7 @@ EXAMPLES
|
|
|
1069
1069
|
$ eggs update
|
|
1070
1070
|
```
|
|
1071
1071
|
|
|
1072
|
-
_See code: [src/commands/update.ts](https://github.com/pieroproietti/
|
|
1072
|
+
_See code: [src/commands/update.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.2/src/commands/update.ts)_
|
|
1073
1073
|
|
|
1074
1074
|
## `eggs version`
|
|
1075
1075
|
|
|
@@ -1115,7 +1115,7 @@ EXAMPLES
|
|
|
1115
1115
|
$ eggs wardrobe get your-wardrobe
|
|
1116
1116
|
```
|
|
1117
1117
|
|
|
1118
|
-
_See code: [src/commands/wardrobe/get.ts](https://github.com/pieroproietti/
|
|
1118
|
+
_See code: [src/commands/wardrobe/get.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.2/src/commands/wardrobe/get.ts)_
|
|
1119
1119
|
|
|
1120
1120
|
## `eggs wardrobe list [REPO]`
|
|
1121
1121
|
|
|
@@ -1144,7 +1144,7 @@ EXAMPLES
|
|
|
1144
1144
|
$ eggs wardrobe list --distro arch
|
|
1145
1145
|
```
|
|
1146
1146
|
|
|
1147
|
-
_See code: [src/commands/wardrobe/list.ts](https://github.com/pieroproietti/
|
|
1147
|
+
_See code: [src/commands/wardrobe/list.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.2/src/commands/wardrobe/list.ts)_
|
|
1148
1148
|
|
|
1149
1149
|
## `eggs wardrobe show [REPO]`
|
|
1150
1150
|
|
|
@@ -1174,7 +1174,7 @@ EXAMPLES
|
|
|
1174
1174
|
$ eggs wardrobe show accessories/
|
|
1175
1175
|
```
|
|
1176
1176
|
|
|
1177
|
-
_See code: [src/commands/wardrobe/show.ts](https://github.com/pieroproietti/
|
|
1177
|
+
_See code: [src/commands/wardrobe/show.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.2/src/commands/wardrobe/show.ts)_
|
|
1178
1178
|
|
|
1179
1179
|
## `eggs wardrobe wear [REPO]`
|
|
1180
1180
|
|
|
@@ -1205,7 +1205,7 @@ EXAMPLES
|
|
|
1205
1205
|
sudo eggs wardrobe wear wagtail/waydroid
|
|
1206
1206
|
```
|
|
1207
1207
|
|
|
1208
|
-
_See code: [src/commands/wardrobe/wear.ts](https://github.com/pieroproietti/
|
|
1208
|
+
_See code: [src/commands/wardrobe/wear.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.2/src/commands/wardrobe/wear.ts)_
|
|
1209
1209
|
<!-- commandsstop -->
|
|
1210
1210
|
* [`eggs adapt`](#eggs-adapt)
|
|
1211
1211
|
* [`eggs analyze`](#eggs-analyze)
|
|
Binary file
|
|
@@ -6,10 +6,10 @@
|
|
|
6
6
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
7
7
|
</head>
|
|
8
8
|
<body>
|
|
9
|
-
<h1>eggs(1) -- the reproductive system of penguins: eggs v10.0.
|
|
9
|
+
<h1>eggs(1) -- the reproductive system of penguins: eggs v10.0.2</h1>
|
|
10
10
|
<h1>SYNOPSIS</h1>
|
|
11
11
|
<p>Install Debian families (debian/devuan/ubuntu)</p>
|
|
12
|
-
<pre><code>$ sudo dpkg -i penguins-eggs_10.0.
|
|
12
|
+
<pre><code>$ sudo dpkg -i penguins-eggs_10.0.2-1_i386.deb
|
|
13
13
|
</code></pre>
|
|
14
14
|
<p>Install Arch families (Arch, manjaro Linux)</p>
|
|
15
15
|
<p>Arch from AUR</p>
|
|
@@ -30,7 +30,7 @@ $ makepkg -si
|
|
|
30
30
|
<h1>USAGE</h1>
|
|
31
31
|
<pre><code>$ eggs (-v|--version|version)
|
|
32
32
|
|
|
33
|
-
penguins-eggs/10.0.
|
|
33
|
+
penguins-eggs/10.0.2
|
|
34
34
|
$ eggs --help [COMMAND]
|
|
35
35
|
|
|
36
36
|
USAGE
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "penguins-eggs",
|
|
3
3
|
"shortName": "eggs",
|
|
4
|
-
"description": "
|
|
5
|
-
"version": "10.0.
|
|
4
|
+
"description": "A remaster system tool, compatible with Arch, Debian, Devuan, Ubuntu and others",
|
|
5
|
+
"version": "10.0.2",
|
|
6
6
|
"author": "Piero Proietti",
|
|
7
7
|
"bin": {
|
|
8
8
|
"eggs": "./bin/run.js"
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"eslint-config-oclif-typescript": "^3",
|
|
47
47
|
"eslint-config-prettier": "^9",
|
|
48
48
|
"mocha": "^10",
|
|
49
|
-
"perrisbrewery": "
|
|
49
|
+
"perrisbrewery": "../perrisbrewery",
|
|
50
50
|
"oclif": "^4.12.0",
|
|
51
51
|
"shx": "^0.3.3",
|
|
52
52
|
"ts-node": "^10",
|
|
@@ -70,7 +70,9 @@
|
|
|
70
70
|
],
|
|
71
71
|
"homepage": "https://penguins-eggs.net",
|
|
72
72
|
"keywords": [
|
|
73
|
-
"oclif"
|
|
73
|
+
"oclif",
|
|
74
|
+
"remaster",
|
|
75
|
+
"system"
|
|
74
76
|
],
|
|
75
77
|
"license": "MIT",
|
|
76
78
|
"main": "dist/index.js",
|
|
@@ -91,7 +93,7 @@
|
|
|
91
93
|
}
|
|
92
94
|
}
|
|
93
95
|
},
|
|
94
|
-
"repository": "pieroproietti/
|
|
96
|
+
"repository": "pieroproietti/penguins-eggs",
|
|
95
97
|
"types": "dist/index.d.ts",
|
|
96
98
|
"scripts": {
|
|
97
99
|
"build": "shx rm -rf dist && tsc -b",
|
package/scripts/resy
CHANGED
|
@@ -1,9 +1,13 @@
|
|
|
1
1
|
#!/bin/sh
|
|
2
|
+
if [ "$(id -u)" != "0" ]; then
|
|
3
|
+
echo "Please use sudo" 1>&2
|
|
4
|
+
exit 1
|
|
5
|
+
fi
|
|
2
6
|
clear
|
|
3
|
-
echo ">>> Re-install Eggs Saving Yolk"
|
|
7
|
+
echo ">>> Re-install penguis-Eggs Saving Yolk"
|
|
4
8
|
tmpDir=$(mktemp -d)
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
9
|
+
mv /var/local/yolk "${tmpDir}"
|
|
10
|
+
apt -y purge penguins-eggs
|
|
11
|
+
dpkg -i /tmp/penguins-eggs*.deb
|
|
12
|
+
mv "${tmpDir}/yolk" /var/local
|
|
13
|
+
eggs dad -d
|