penguins-eggs 9.0.9 → 9.0.16
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/README.md +90 -14
- package/addons/blissos/theme/livecd/grub.theme.cfg +1 -0
- package/addons/eggs/theme/calamares/branding/show.qml +1 -1
- package/addons/eggs/theme/livecd/README.md +13 -15
- package/addons/eggs/theme/livecd/splash.png +0 -0
- package/addons/neon/theme/livecd/splash.png +0 -0
- package/lib/classes/krill_install.d.ts +4 -4
- package/lib/classes/krill_install.js +22 -35
- package/lib/classes/krill_prepare.js +5 -4
- package/lib/classes/ovary.d.ts +5 -14
- package/lib/classes/ovary.js +112 -163
- package/lib/classes/users.d.ts +21 -0
- package/lib/classes/users.js +129 -0
- package/lib/commands/analyze.d.ts +25 -0
- package/lib/commands/analyze.js +74 -0
- package/lib/commands/export/iso.js +1 -1
- package/lib/commands/syncfrom.d.ts +37 -0
- package/lib/commands/syncfrom.js +156 -0
- package/lib/commands/syncto.d.ts +48 -0
- package/lib/commands/syncto.js +219 -0
- package/lib/interfaces/i-analyze.d.ts +13 -0
- package/lib/interfaces/i-analyze.js +18 -0
- package/oclif.manifest.json +1 -1
- package/package.json +10 -10
- package/scripts/_eggs +36 -7
- package/scripts/eggs.bash +5 -2
- package/addons/blissos/theme/livecd/README.md +0 -23
- package/addons/eggs/theme/calamares/branding/4tation.png +0 -0
- package/addons/neon/theme/livecd/README.md +0 -23
- package/addons/neon/theme/livecd/splash.pcx +0 -0
package/scripts/_eggs
CHANGED
|
@@ -8,6 +8,7 @@ _eggs () {
|
|
|
8
8
|
## public cli commands & flags
|
|
9
9
|
local -a _all_commands=(
|
|
10
10
|
"adapt:adapt monitor resolution for VM only"
|
|
11
|
+
"analyze:analyze situation"
|
|
11
12
|
"bro:bro: waydroid helper"
|
|
12
13
|
"calamares:calamares or install or configure it"
|
|
13
14
|
"config:Configure and install prerequisites deb packages to run it"
|
|
@@ -21,15 +22,17 @@ _eggs () {
|
|
|
21
22
|
"mom:ask for mommy - gui helper"
|
|
22
23
|
"produce:the system produce an egg: iso image of your system"
|
|
23
24
|
"remove:remove eggs and others stuff"
|
|
25
|
+
"syncfrom:Restore users, server and datas from luks-eggs-backup"
|
|
26
|
+
"syncto:Backup users, server and datas to luks-eggs-backup"
|
|
24
27
|
"tools\:clean:clean system log, apt, etc"
|
|
25
28
|
"tools\:locales:install/clean locales"
|
|
26
29
|
"tools\:skel:update skel from home configuration"
|
|
27
30
|
"tools\:stat:get statistics from sourceforge"
|
|
28
31
|
"tools\:yolk:configure eggs to install without internet"
|
|
29
32
|
"update:update the penguin's eggs tool"
|
|
30
|
-
"autocomplete:display autocomplete installation instructions"
|
|
31
33
|
"help:Display help for <%= config.bin %>."
|
|
32
34
|
"version:"
|
|
35
|
+
"autocomplete:display autocomplete installation instructions"
|
|
33
36
|
)
|
|
34
37
|
|
|
35
38
|
_set_flags () {
|
|
@@ -41,6 +44,13 @@ adapt)
|
|
|
41
44
|
)
|
|
42
45
|
;;
|
|
43
46
|
|
|
47
|
+
analyze)
|
|
48
|
+
_command_flags=(
|
|
49
|
+
"--help[Show CLI help.]"
|
|
50
|
+
"--verbose[verbose]"
|
|
51
|
+
)
|
|
52
|
+
;;
|
|
53
|
+
|
|
44
54
|
bro)
|
|
45
55
|
_command_flags=(
|
|
46
56
|
"--help[Show CLI help.]"
|
|
@@ -112,6 +122,7 @@ info)
|
|
|
112
122
|
install)
|
|
113
123
|
_command_flags=(
|
|
114
124
|
"--cli[force use CLI installer]"
|
|
125
|
+
"--crypted[crypted CLI installation]"
|
|
115
126
|
"--help[Show CLI help.]"
|
|
116
127
|
"--verbose[verbose]"
|
|
117
128
|
)
|
|
@@ -157,6 +168,24 @@ remove)
|
|
|
157
168
|
)
|
|
158
169
|
;;
|
|
159
170
|
|
|
171
|
+
syncfrom)
|
|
172
|
+
_command_flags=(
|
|
173
|
+
"--krill[krill]"
|
|
174
|
+
"--file=-[file with LUKS volume encrypted]:"
|
|
175
|
+
"--help[Show CLI help.]"
|
|
176
|
+
"--verbose[verbose]"
|
|
177
|
+
)
|
|
178
|
+
;;
|
|
179
|
+
|
|
180
|
+
syncto)
|
|
181
|
+
_command_flags=(
|
|
182
|
+
"--krill[krill]"
|
|
183
|
+
"--file=-[file LUKS volume encrypted]:"
|
|
184
|
+
"--help[Show CLI help.]"
|
|
185
|
+
"--verbose[verbose]"
|
|
186
|
+
)
|
|
187
|
+
;;
|
|
188
|
+
|
|
160
189
|
tools:clean)
|
|
161
190
|
_command_flags=(
|
|
162
191
|
"--help[Show CLI help.]"
|
|
@@ -204,12 +233,6 @@ update)
|
|
|
204
233
|
)
|
|
205
234
|
;;
|
|
206
235
|
|
|
207
|
-
autocomplete)
|
|
208
|
-
_command_flags=(
|
|
209
|
-
"--refresh-cache[Refresh cache (ignores displaying instructions)]"
|
|
210
|
-
)
|
|
211
|
-
;;
|
|
212
|
-
|
|
213
236
|
help)
|
|
214
237
|
_command_flags=(
|
|
215
238
|
"--nested-commands[Include all nested commands in the output.]"
|
|
@@ -222,6 +245,12 @@ version)
|
|
|
222
245
|
)
|
|
223
246
|
;;
|
|
224
247
|
|
|
248
|
+
autocomplete)
|
|
249
|
+
_command_flags=(
|
|
250
|
+
"--refresh-cache[Refresh cache (ignores displaying instructions)]"
|
|
251
|
+
)
|
|
252
|
+
;;
|
|
253
|
+
|
|
225
254
|
esac
|
|
226
255
|
}
|
|
227
256
|
## end public cli commands & flags
|
package/scripts/eggs.bash
CHANGED
|
@@ -12,6 +12,7 @@ _eggs_autocomplete()
|
|
|
12
12
|
|
|
13
13
|
local commands="
|
|
14
14
|
adapt --verbose --help
|
|
15
|
+
analyze --help --verbose
|
|
15
16
|
bro --help
|
|
16
17
|
calamares --help --verbose --install --final --remove --theme
|
|
17
18
|
config --nointeractive --clean --help --verbose
|
|
@@ -20,11 +21,13 @@ export:deb --help --clean --amd64 --i386 --armel --arm64 --all
|
|
|
20
21
|
export:docs --help
|
|
21
22
|
export:iso --help --backup --clean
|
|
22
23
|
info --verbose --help
|
|
23
|
-
install --cli --help --verbose
|
|
24
|
+
install --cli --crypted --help --verbose
|
|
24
25
|
kill --help --verbose
|
|
25
26
|
mom --help
|
|
26
27
|
produce --prefix --basename --backup --fast --normal --max --verbose --yolk --script --help --theme --addons --release
|
|
27
28
|
remove --purge --autoremove --help --verbose
|
|
29
|
+
syncfrom --krill --file --help --verbose
|
|
30
|
+
syncto --krill --file --help --verbose
|
|
28
31
|
tools:clean --help --verbose
|
|
29
32
|
tools:locales --help --reinstall --verbose
|
|
30
33
|
tools:skel --help --user --verbose
|
|
@@ -32,8 +35,8 @@ tools:stat --help --month --year
|
|
|
32
35
|
tools:yolk --help --verbose
|
|
33
36
|
update --help --apt --basket --verbose
|
|
34
37
|
help --nested-commands
|
|
35
|
-
autocomplete --refresh-cache
|
|
36
38
|
version
|
|
39
|
+
autocomplete --refresh-cache
|
|
37
40
|
"
|
|
38
41
|
|
|
39
42
|
function __trim_colon_commands()
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
I'm trying to made a way to easy customize livecd boot.
|
|
2
|
-
|
|
3
|
-
* grub.template.cfg
|
|
4
|
-
* grub.theme.cfg
|
|
5
|
-
* isolinux.template.cfg
|
|
6
|
-
* isolinux.theme.cfg
|
|
7
|
-
* splash.png
|
|
8
|
-
|
|
9
|
-
# How it work
|
|
10
|
-
eggs take cure to copy to fill the template with the necessary values and copy configurations on /boot/grub and /isolinux on the ISO image.
|
|
11
|
-
|
|
12
|
-
# grub
|
|
13
|
-
You can adapt the template and the grub theme file in accord to your needs. During the production of eggs file ```grub.template.cfg``` will be convertent in ```grub.cfg``` and copied under ```/boot/grub``` directory of the image.
|
|
14
|
-
* __grub.template.cfg__ -> will became -> __/boot/grub/grub.cfg__ under the iso
|
|
15
|
-
* __grub.theme.cfg__
|
|
16
|
-
|
|
17
|
-
# isolinux
|
|
18
|
-
You can adapt the template for isolinux and the isolinux theme. During the production of eggs file ```isolinux.template.cfg``` will be convertent in ```isolilinux.cfg``` and copied under ```/isolinux``` directory of the image.
|
|
19
|
-
* __isolinux.template.cfg__ -> will became -> __/isolinux/isolinux.cfg__ under the iso
|
|
20
|
-
* __isolinux.theme.cfg__
|
|
21
|
-
|
|
22
|
-
# splash
|
|
23
|
-
both the themes will use the same splash file, who will be copied under /isolinux directory of the image.
|
|
Binary file
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
I'm trying to made a way to easy customize livecd boot.
|
|
2
|
-
|
|
3
|
-
* grub.template.cfg
|
|
4
|
-
* grub.theme.cfg
|
|
5
|
-
* isolinux.template.cfg
|
|
6
|
-
* isolinux.theme.cfg
|
|
7
|
-
* splash.png
|
|
8
|
-
|
|
9
|
-
# How it work
|
|
10
|
-
eggs take cure to copy to fill the template with the necessary values and copy configurations on /boot/grub and /isolinux on the ISO image.
|
|
11
|
-
|
|
12
|
-
# grub
|
|
13
|
-
You can adapt the template and the grub theme file i accord to your needs. During the production of eggs file grub.template.cfg will be convertent in grub.cfg and copied under /boot/grub directory of the image.
|
|
14
|
-
* __grub.template.cfg__ -> will became -> __/boot/grub/grub.cfg__ under the iso
|
|
15
|
-
* __grub.theme.cfg__
|
|
16
|
-
|
|
17
|
-
# isolinux
|
|
18
|
-
You can adapt the template for isolinux and the isolinux theme. During the production of eggs file isolinux.template.cfg will be convertent in isolilinux.cfg and copied under /isolinux directory of the image.
|
|
19
|
-
* __isolinux.template.cfg__ -> will became -> __/isolinux/isolinux.cfg__ under the iso
|
|
20
|
-
* __isolinux.theme.cfg__
|
|
21
|
-
|
|
22
|
-
# splash
|
|
23
|
-
both the themes will use the same splash file, who will be copied under /isolinux directory of the image.
|
|
Binary file
|