penguins-eggs 25.10.24 → 25.10.26
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 +28 -28
- package/addons/eggs/adapt/applications/eggs-adapt.desktop +0 -0
- package/addons/eggs/pve/applications/eggs-pve.desktop +0 -0
- package/addons/eggs/rsupport/applications/eggs-rsupport.desktop +0 -0
- package/addons/eggs/theme/applications/install-system.desktop +0 -0
- package/assets/calamares/install-system.sh +0 -0
- package/assets/penguins-eggs.desktop +0 -0
- package/assets/penguins-krill.desktop +0 -0
- package/assets/penguins-links-add.desktop +0 -0
- package/assets/penguins-live-installer.desktop +0 -0
- package/bin/dev.js +0 -0
- package/conf/distros/alpine/calamares/calamares-modules/machineid-openrc/machineid-openrc.sh +0 -0
- package/conf/distros/buster/calamares/calamares-modules/cleanup/cleanup.sh +0 -0
- package/conf/distros/buster/calamares/calamares-modules/dpkg-unsafe-io/dpkg-unsafe-io.sh +0 -0
- package/conf/distros/buster/calamares/calamares-modules/sources-yolk/sources-yolk.sh +0 -0
- package/conf/distros/fedora/calamares/calamares-modules/bootloaderspecification/bootloaderspecification.sh +0 -0
- package/conf/distros/focal/calamares/calamares-modules/cleanup/cleanup.sh +0 -0
- package/conf/distros/focal/calamares/calamares-modules/sources-yolk/sources-yolk.sh +0 -0
- package/conf/distros/noble/calamares/calamares-modules/cleanup/cleanup.sh +0 -0
- package/conf/distros/noble/calamares/calamares-modules/sources-yolk/sources-yolk.sh +0 -0
- package/conf/distros/noble/calamares/libexec/calamares-aptsources.sh +0 -0
- package/conf/distros/noble/calamares/libexec/calamares-l10n-helper.sh +0 -0
- package/conf/distros/noble/calamares/libexec/calamares-logs-helper.sh +0 -0
- package/conf/distros/noble/calamares/libexec/calamares-nomodeset.sh +0 -0
- package/conf/distros/opensuse/calamares/calamares-modules/bootloaderspecification/bootloaderspecification.sh +0 -0
- package/conf/distros/opensuse/calamares/settings.yml +0 -0
- package/conf/distros/opensuse/calamares/zstd2lzo.sh +0 -0
- package/conf/distros/trixie/calamares/calamares-modules/cleanup/cleanup.sh +0 -0
- package/conf/distros/trixie/calamares/calamares-modules/dpkg-unsafe-io/dpkg-unsafe-io.sh +0 -0
- package/conf/distros/trixie/calamares/calamares-modules/sources-yolk/sources-yolk.sh +0 -0
- package/conf/init/unattended.sh +0 -0
- package/dist/classes/ovary.d/luks-home.js +11 -4
- package/dist/classes/ovary.d/luks-interactive-crypto-config.d.ts +47 -0
- package/dist/classes/ovary.d/luks-interactive-crypto-config.js +135 -0
- package/dist/classes/ovary.d/luks-root-initrd.d.ts +1 -1
- package/dist/classes/ovary.d/luks-root-initrd.js +1 -1
- package/dist/classes/ovary.d/luks-root.js +35 -1
- package/dist/classes/ovary.d/produce.js +6 -0
- package/dist/classes/ovary.d.ts +3 -0
- package/dist/classes/ovary.js +3 -0
- package/dracut/create-symlink +0 -0
- package/dracut/export +0 -0
- package/dracut/export-dracut-analysis +0 -0
- package/dracut/export-dracut-log +0 -0
- package/dracut/mkisofs +0 -0
- package/dracut/modules.d/00debug-shell/debug-hook.sh +0 -0
- package/dracut/modules.d/00debug-shell/module-setup.sh +0 -0
- package/dracut/modules.d/90block/block-cmdline.sh +0 -0
- package/dracut/modules.d/90block/module-setup.sh +0 -0
- package/dracut/modules.d/95iso-scan/iso-scan-fallback.sh +0 -0
- package/dracut/modules.d/95iso-scan/iso-scan.sh +0 -0
- package/dracut/modules.d/95iso-scan/module-setup.sh +0 -0
- package/dracut/modules.d/95luks-loop/luks-loop.sh +0 -0
- package/dracut/modules.d/95luks-loop/module-setup.sh +0 -0
- package/dracut/renew-initramfs +0 -0
- package/dracut/sbin2bin +0 -0
- package/dracut/update-dracut-conf-d +0 -0
- package/dracut/update-dracut-modules +0 -0
- package/eui/eui-autostart-cinnamon.desktop +0 -0
- package/eui/eui-autostart-xfce.desktop +0 -0
- package/eui/eui-create-image.sh +0 -0
- package/eui/eui-start.sh +0 -0
- package/package.json +124 -130
- package/perrisbrewery/scripts/postinst +0 -0
- package/perrisbrewery/scripts/postrm +0 -0
- package/perrisbrewery/scripts/preinst +0 -0
- package/perrisbrewery/scripts/prerm +0 -0
- package/scripts/99clean +0 -0
- package/scripts/adapt.sh +0 -0
- package/scripts/boot-encrypted-root.sh +138 -95
- package/scripts/bros/waydroid-helper.sh +0 -0
- package/scripts/lsb_release +0 -0
- package/scripts/mom.sh +0 -0
- package/scripts/mount-encrypted-home.sh +130 -65
- package/scripts/pve-live.service +0 -0
- package/scripts/pve-live.sh +0 -0
- package/scripts/resy +0 -0
package/dist/classes/ovary.js
CHANGED
|
@@ -31,6 +31,7 @@ import { liveCreateStructure } from './ovary.d/live-create-structure.js';
|
|
|
31
31
|
import { finished } from './ovary.d/finished.js';
|
|
32
32
|
// crypt
|
|
33
33
|
import { luksGetPassword } from './ovary.d/luks-get-password.js';
|
|
34
|
+
import { interactiveCryptoConfig } from './ovary.d/luks-interactive-crypto-config.js';
|
|
34
35
|
// homecrypt
|
|
35
36
|
import { luksHome } from './ovary.d/luks-home.js';
|
|
36
37
|
import { installHomecryptSupport } from './ovary.d/luks-home-support.js';
|
|
@@ -76,6 +77,7 @@ export default class Ovary {
|
|
|
76
77
|
luksFile = '';
|
|
77
78
|
luksDevice = '';
|
|
78
79
|
luksPassword = '';
|
|
80
|
+
luksConfig = {};
|
|
79
81
|
// I put all methods on ovary.d
|
|
80
82
|
fertilization = fertilization;
|
|
81
83
|
produce = produce;
|
|
@@ -88,6 +90,7 @@ export default class Ovary {
|
|
|
88
90
|
editLiveFs = editLiveFs;
|
|
89
91
|
// luks
|
|
90
92
|
luksGetPassword = luksGetPassword;
|
|
93
|
+
interactiveCryptoConfig = interactiveCryptoConfig;
|
|
91
94
|
// luksHome
|
|
92
95
|
luksHome = luksHome;
|
|
93
96
|
installHomecryptSupport = installHomecryptSupport;
|
package/dracut/create-symlink
CHANGED
|
File without changes
|
package/dracut/export
CHANGED
|
File without changes
|
|
File without changes
|
package/dracut/export-dracut-log
CHANGED
|
File without changes
|
package/dracut/mkisofs
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/dracut/renew-initramfs
CHANGED
|
File without changes
|
package/dracut/sbin2bin
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/eui/eui-create-image.sh
CHANGED
|
File without changes
|
package/eui/eui-start.sh
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,133 +1,127 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
2
|
+
"name": "penguins-eggs",
|
|
3
|
+
"shortName": "eggs",
|
|
4
|
+
"description": "A remaster system tool, compatible with Arch, Debian, Devuan, Ubuntu and others",
|
|
5
|
+
"version": "25.10.26",
|
|
6
|
+
"author": "Piero Proietti",
|
|
7
|
+
"bin": {
|
|
8
|
+
"eggs": "./bin/run.js"
|
|
9
|
+
},
|
|
10
|
+
"bugs": "https://github.com/pieroproietti/penguins-eggs/issues",
|
|
11
|
+
"dependencies": {
|
|
12
|
+
"@oclif/core": "^4.7.2",
|
|
13
|
+
"@oclif/plugin-autocomplete": "^3.2.38",
|
|
14
|
+
"@oclif/plugin-help": "^6.2.34",
|
|
15
|
+
"@oclif/plugin-version": "^2.2.35",
|
|
16
|
+
"@types/express": "^5.0.4",
|
|
17
|
+
"ansis": "^4.2.0",
|
|
18
|
+
"axios": "^1.12.2",
|
|
19
|
+
"chalk": "^5.6.2",
|
|
20
|
+
"cli-cursor": "^5.0.0",
|
|
21
|
+
"debug": "^4.4.3",
|
|
22
|
+
"express": "^5.1.0",
|
|
23
|
+
"ink": "^5",
|
|
24
|
+
"ink-progress-bar": "^3.0.0",
|
|
25
|
+
"ink-spinner": "^5.0.0",
|
|
26
|
+
"inquirer": "^12.10.0",
|
|
27
|
+
"js-yaml": "^4.1.0",
|
|
28
|
+
"mustache": "^4.2.0",
|
|
29
|
+
"netmask": "^2.0.2",
|
|
30
|
+
"react": "^18.3.1",
|
|
31
|
+
"read": "^4.1.0",
|
|
32
|
+
"shelljs": "^0.10.0",
|
|
33
|
+
"systeminformation": "^5.27.11",
|
|
34
|
+
"tftp": "^0.1.2",
|
|
35
|
+
"ws": "^8.18.3"
|
|
36
|
+
},
|
|
37
|
+
"devDependencies": {
|
|
38
|
+
"@oclif/prettier-config": "^0.2.1",
|
|
39
|
+
"@oclif/test": "^4.1.14",
|
|
40
|
+
"@types/chai": "^5.2.3",
|
|
41
|
+
"@types/debug": "^4.1.12",
|
|
42
|
+
"@types/glob": "^9.0.0",
|
|
43
|
+
"@types/inquirer": "^9.0.8",
|
|
44
|
+
"@types/js-yaml": "^4.0.9",
|
|
45
|
+
"@types/mocha": "^10.0.8",
|
|
46
|
+
"@types/mustache": "^4.2.6",
|
|
47
|
+
"@types/netmask": "^2.0.5",
|
|
48
|
+
"@types/node": "^22.15.30",
|
|
49
|
+
"@types/react": "^18.3.18",
|
|
50
|
+
"@types/read": "^0.0.32",
|
|
51
|
+
"@types/shelljs": "^0.8.17",
|
|
52
|
+
"@types/ws": "^8.18.1",
|
|
53
|
+
"chai": "^6.2.0",
|
|
54
|
+
"eslint": "^9.38.0",
|
|
55
|
+
"eslint-config-oclif": "^6.0.114",
|
|
56
|
+
"eslint-config-prettier": "^10.1.8",
|
|
57
|
+
"glob": "^11.0.3",
|
|
58
|
+
"mocha": "^11.7.4",
|
|
59
|
+
"oclif": "^4.22.37",
|
|
60
|
+
"perrisbrewery": "^25.9.16",
|
|
61
|
+
"prettier": "^3.6.2",
|
|
62
|
+
"shx": "^0.4.0",
|
|
63
|
+
"ts-node": "10.9.2",
|
|
64
|
+
"ts-prune": "^0.10.3",
|
|
65
|
+
"typescript": "^5.9.3"
|
|
66
|
+
},
|
|
67
|
+
"engines": {
|
|
68
|
+
"node": ">=16.0.0"
|
|
69
|
+
},
|
|
70
|
+
"files": [
|
|
71
|
+
".oclif.manifest.json",
|
|
72
|
+
"/addons",
|
|
73
|
+
"/assets",
|
|
74
|
+
"/bin",
|
|
75
|
+
"/conf",
|
|
76
|
+
"/dist",
|
|
77
|
+
"/dracut",
|
|
78
|
+
"/eui",
|
|
79
|
+
"/initramfs-tools",
|
|
80
|
+
"/manpages",
|
|
81
|
+
"/mkinitcpio",
|
|
82
|
+
"/mkinitfs",
|
|
83
|
+
"/perrisbrewery",
|
|
84
|
+
"/scripts"
|
|
85
|
+
],
|
|
86
|
+
"homepage": "https://penguins-eggs.net",
|
|
87
|
+
"keywords": [
|
|
88
|
+
"oclif",
|
|
89
|
+
"remaster",
|
|
90
|
+
"system"
|
|
91
|
+
],
|
|
92
|
+
"license": "MIT",
|
|
93
|
+
"main": "dist/index.js",
|
|
94
|
+
"type": "module",
|
|
95
|
+
"oclif": {
|
|
96
|
+
"bin": "eggs",
|
|
97
|
+
"dirname": "penguins-eggs",
|
|
98
|
+
"commands": "./dist/commands",
|
|
99
|
+
"plugins": [
|
|
100
|
+
"@oclif/plugin-help",
|
|
101
|
+
"@oclif/plugin-autocomplete",
|
|
102
|
+
"@oclif/plugin-version"
|
|
85
103
|
],
|
|
86
|
-
"
|
|
87
|
-
"
|
|
88
|
-
|
|
89
|
-
"
|
|
90
|
-
|
|
91
|
-
],
|
|
92
|
-
"license": "MIT",
|
|
93
|
-
"main": "dist/index.js",
|
|
94
|
-
"type": "module",
|
|
95
|
-
"oclif": {
|
|
96
|
-
"bin": "eggs",
|
|
97
|
-
"dirname": "penguins-eggs",
|
|
98
|
-
"commands": "./dist/commands",
|
|
99
|
-
"plugins": [
|
|
100
|
-
"@oclif/plugin-help",
|
|
101
|
-
"@oclif/plugin-autocomplete",
|
|
102
|
-
"@oclif/plugin-version"
|
|
103
|
-
],
|
|
104
|
-
"topicSeparator": " ",
|
|
105
|
-
"topics": {
|
|
106
|
-
"hello": {
|
|
107
|
-
"description": "Say hello to the world and others"
|
|
108
|
-
}
|
|
109
|
-
}
|
|
110
|
-
},
|
|
111
|
-
"repository": "pieroproietti/penguins-eggs",
|
|
112
|
-
"scripts": {
|
|
113
|
-
"_postpack": "shx rm -f oclif.manifest.json",
|
|
114
|
-
"_prepack": "oclif manifest && ocl -t linux-x64",
|
|
115
|
-
"build": "shx rm -rf dist && tsc -b",
|
|
116
|
-
"deb": "shx rm -rf dist && tsc -p . && oclif manifest && pb deb --release $(cat ./release)",
|
|
117
|
-
"format": "prettier --write \"+(src|test)/**/*.+(ts|js|json)\"",
|
|
118
|
-
"lint": "eslint . --ext .ts",
|
|
119
|
-
"manifest": "oclif manifest",
|
|
120
|
-
"posttest": "pnpm run lint",
|
|
121
|
-
"tarballs": "shx rm -rf dist && tsc -p . && oclif manifest && oclif pack tarballs -t linux-x64 --no-xz -r . && pb tarballs --release $(cat ./release)",
|
|
122
|
-
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
|
|
123
|
-
"unused": "ts-prune",
|
|
124
|
-
"version": "oclif readme && git add README.md"
|
|
125
|
-
},
|
|
126
|
-
"types": "dist/index.d.ts",
|
|
127
|
-
"pnpm": {
|
|
128
|
-
"overrides": {
|
|
129
|
-
"react": "^18.3.1",
|
|
130
|
-
"@types/react": "^18.3.18"
|
|
131
|
-
}
|
|
104
|
+
"topicSeparator": " ",
|
|
105
|
+
"topics": {
|
|
106
|
+
"hello": {
|
|
107
|
+
"description": "Say hello to the world and others"
|
|
108
|
+
}
|
|
132
109
|
}
|
|
133
|
-
}
|
|
110
|
+
},
|
|
111
|
+
"repository": "pieroproietti/penguins-eggs",
|
|
112
|
+
"types": "dist/index.d.ts",
|
|
113
|
+
"scripts": {
|
|
114
|
+
"_postpack": "shx rm -f oclif.manifest.json",
|
|
115
|
+
"_prepack": "oclif manifest && ocl -t linux-x64",
|
|
116
|
+
"build": "shx rm -rf dist && tsc -b",
|
|
117
|
+
"deb": "shx rm -rf dist && tsc -p . && oclif manifest && pb deb --release $(cat ./release)",
|
|
118
|
+
"format": "prettier --write \"+(src|test)/**/*.+(ts|js|json)\"",
|
|
119
|
+
"lint": "eslint . --ext .ts",
|
|
120
|
+
"manifest": "oclif manifest",
|
|
121
|
+
"posttest": "pnpm run lint",
|
|
122
|
+
"tarballs": "shx rm -rf dist && tsc -p . && oclif manifest && oclif pack tarballs -t linux-x64 --no-xz -r . && pb tarballs --release $(cat ./release)",
|
|
123
|
+
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
|
|
124
|
+
"unused": "ts-prune",
|
|
125
|
+
"version": "oclif readme && git add README.md"
|
|
126
|
+
}
|
|
127
|
+
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/scripts/99clean
CHANGED
|
File without changes
|
package/scripts/adapt.sh
CHANGED
|
File without changes
|