penguins-eggs 9.1.34 → 9.2.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/README.md +41 -78
- package/addons/eggs/theme/applications/install-debian.desktop +2 -2
- package/conf/distros/bionic/calamares/settings.yml +2 -2
- package/conf/distros/buster/calamares/settings.yml +2 -2
- package/conf/distros/focal/calamares/settings.yml +2 -2
- package/conf/distros/rolling/calamares/modules/machineid.yml +4 -0
- package/conf/distros/rolling/calamares/modules/packages.yml +1 -1
- package/conf/distros/rolling/calamares/modules/shellprocess_removelink.yml +6 -0
- package/conf/distros/rolling/calamares/settings.yml +4 -11
- package/conf/exclude.list +81 -96
- package/conf/tools.yaml +1 -1
- package/lib/classes/bleach.js +6 -4
- package/lib/classes/daddy.js +2 -1
- package/lib/classes/distro.js +23 -14
- package/lib/classes/family/archlinux.js +8 -4
- package/lib/classes/incubation/distros/bionic.d.ts +1 -1
- package/lib/classes/incubation/distros/bionic.js +1 -1
- package/lib/classes/incubation/distros/buster.d.ts +1 -1
- package/lib/classes/incubation/distros/buster.js +1 -1
- package/lib/classes/incubation/distros/focal.d.ts +1 -1
- package/lib/classes/incubation/distros/focal.js +1 -1
- package/lib/classes/incubation/distros/jessie.d.ts +1 -1
- package/lib/classes/incubation/distros/jessie.js +1 -1
- package/lib/classes/incubation/distros/rolling.d.ts +3 -3
- package/lib/classes/incubation/distros/rolling.js +4 -5
- package/lib/classes/incubation/fisherman-helper/packages.d.ts +4 -0
- package/lib/classes/incubation/fisherman-helper/packages.js +9 -16
- package/lib/classes/incubation/fisherman.d.ts +1 -1
- package/lib/classes/incubation/fisherman.js +24 -10
- package/lib/classes/incubation/incubator.js +26 -22
- package/lib/classes/ovary.d.ts +2 -1
- package/lib/classes/ovary.js +91 -30
- package/lib/classes/pacman.js +5 -5
- package/lib/classes/utils.d.ts +1 -1
- package/lib/classes/utils.js +5 -4
- package/lib/commands/calamares.js +1 -0
- package/lib/commands/{krill.d.ts → install.d.ts} +0 -1
- package/lib/commands/{krill.js → install.js} +6 -24
- package/lib/commands/produce.d.ts +1 -0
- package/lib/commands/produce.js +5 -7
- package/lib/commands/syncfrom.js +1 -1
- package/lib/commands/syncto.js +1 -1
- package/lib/components/elements/information.js +0 -2
- package/lib/krill/krill-prepare.d.ts +3 -1
- package/lib/krill/krill-prepare.js +8 -2
- package/lib/krill/krill-sequence.d.ts +2 -1
- package/lib/krill/krill-sequence.js +36 -33
- package/lib/krill/modules/bootloader.js +28 -2
- package/lib/krill/modules/initramfs.js +14 -2
- package/lib/krill/modules/{l/303/262cale-cfg.d.ts → locale-cfg.d.ts} +0 -0
- package/lib/krill/modules/{l/303/262cale-cfg.js → locale-cfg.js} +0 -0
- package/lib/krill/modules/set-keyboard.js +3 -3
- package/lib/lib/utils.d.ts +27 -0
- package/lib/lib/utils.js +54 -19
- package/mkinitcpio/archlinux/README.md +116 -0
- package/mkinitcpio/manjaro/README.md +4 -0
- package/package.json +11 -10
- package/scripts/_eggs +21 -20
- package/scripts/eggs.bash +4 -4
- package/scripts/mom-cli.sh +23 -79
- package/conf/distros/rolling/calamares/calamares-modules/remove-link/module.yml +0 -9
- package/conf/distros/rolling/calamares/calamares-modules/remove-link/remove-link.sh +0 -3
- package/lib/commands/remove.d.ts +0 -21
- package/lib/commands/remove.js +0 -84
package/README.md
CHANGED
|
@@ -48,7 +48,7 @@ wardrobe was added to eggs on april 2022, it's is a way to guide and consolidate
|
|
|
48
48
|
|
|
49
49
|
I hope peoples will be interested in wardrobe and you will end to fork the main repository and add your customizations: together will be possibile to make great steps impossible for a single developer.
|
|
50
50
|
|
|
51
|
-
You can read more in wardrobe on [penguin's eggs blog](https://penguins-eggs.net/2022/04/12/wardrobe-colibri-duck-eagle-and-owl/). The results of mine customizations are mostly under [Debian bullseye](https://sourceforge.net/projects/penguins-eggs/files/iso/debian/bullseye/), [Devuan chimaera](
|
|
51
|
+
You can read more in wardrobe on [penguin's eggs blog](https://penguins-eggs.net/2022/04/12/wardrobe-colibri-duck-eagle-and-owl/). The results of mine customizations are mostly under [Debian bullseye](https://sourceforge.net/projects/penguins-eggs/files/iso/debian/bullseye/), [Devuan chimaera](ttps://sourceforge.net/projects/penguins-eggs/files/iso/devuan/chimaera/) and [Ubuntu jammy](https://sourceforge.net/projects/penguins-eggs/files/iso/ubuntu/jammy/) on my sourgeforce page.
|
|
52
52
|
|
|
53
53
|
### krill
|
|
54
54
|
eggs include a CLI installer named krill, this let you to produce and install servers configurations. krill use a nice TUI interface using the same, configuration created by eggs for [calamares](calamares.io). This lead to have "about the same" experience installing, from old distros to new ones and for GUI and CLI. To force using krill in place of calamares in a GUI system just: **sudo eggs install --cli**
|
|
@@ -56,29 +56,24 @@ eggs include a CLI installer named krill, this let you to produce and install se
|
|
|
56
56
|
### addons and themes
|
|
57
57
|
Addons are used mostly to let third parties to develop extensions. Note that currently we have an extension for the theme that includes both branding calamares, link and installer icon. In addition, also as an addon has been developed choose between GUI or CLI installation, adapt the video resolution, link to remote support, etc.
|
|
58
58
|
|
|
59
|
-
### backup
|
|
60
|
-
You can use the backup mode by simply adding --backup in the produce command. This way eggs will save your users data and accounts and will not add a live user, you will have to log in with the main user of your system with the his password. **Note:** since eggs always configures autologin, you may have a security risk with valuable data. Use this option only for your personal stuff and do not share the iso on the network.
|
|
59
|
+
### backup/clone
|
|
61
60
|
|
|
62
|
-
|
|
63
|
-
* ```eggs produce --backup``` remove servers and users data from live, and put them on a LUKS volume.
|
|
61
|
+
We have two methods to save in the live systema all our data: clone and backup.
|
|
64
62
|
|
|
65
|
-
|
|
63
|
+
```eggs produces --fast --clone``` saves our users and our data directly in the generated iso. The data will be visible directly from the live and accessible to anyone who gets a copy.
|
|
66
64
|
|
|
67
|
-
|
|
65
|
+
```eggs produces --fast --backup``` saves our data within the generated iso using a LUKS volume. Our data will NOT be visible in the live system but can be reinstalled automatically with krill installer. Even having the generated image available, our data will be protected by the LUKS passphrase.
|
|
68
66
|
|
|
69
|
-
|
|
70
|
-
* ```eggs
|
|
67
|
+
* ```eggs produce``` just users accounts and homes.
|
|
68
|
+
* ```eggs produce --clone``` include all users data UNCRYPTED directly on the live.
|
|
69
|
+
* ```eggs produce --backup``` include all users data CRYPTED on a LUKS volume inside the iso.
|
|
71
70
|
|
|
72
71
|
**NOTE:**
|
|
73
|
-
|
|
74
|
-
* installing with calamares: when installation is finished, you need to mount the rootdir of your installed system and, give the following command: ```sudo eggs syncfrom -f /path/to/luks-eggs-backup -r /path/to/rootdir```
|
|
75
|
-
* it's possbile actually to change the nest directory, editing configuration file ```/etc/penguins-eggs.d/eggs.yaml```. Example: ```set snapshot_dir: '/opt/eggs/'```, but you can't use the following: /etc, /boot, /usr and /var.
|
|
72
|
+
Using ```sudo eggs krill --cli``` will restore your CRYPTED backup automatically. Of course the original passphrase will be request.
|
|
76
73
|
|
|
77
|
-
**DISCLAIM:** using this feathures in non appropriate way can be dangerous for your data:
|
|
78
|
-
* ```syncfrom``` replace all users homes and all servers homes with data from the luck-eggs-backup file, Force this data in a not appropriate system can easily end in a long disaster recovery.
|
|
79
74
|
|
|
80
75
|
## What distributions can I use?
|
|
81
|
-
eggs was born on Debian strecth, buster and
|
|
76
|
+
eggs was born on Debian strecth, buster and followinng. Actually full support Debian from jessie to bookworm/sid, Devuan beowulf, chimaera, daedalus, Ubuntu bionic, focal, jammy - and all derivatives from them including Linux mint, Deepin, neon KDE, etc - ManjaroLinux and finally Arch, the last distro added.
|
|
82
77
|
|
|
83
78
|
You can read more on the [blog](https://penguins-eggs.net/2021/11/02/distros-that-can-be-remastered-with-eggs/), some examples of iso images remastered with eggs are in the [sourceforge page of the project](https://sourceforge.net/projects/penguins-eggs/files/iso/).
|
|
84
79
|
|
|
@@ -132,7 +127,7 @@ $ npm install -g penguins-eggs
|
|
|
132
127
|
$ eggs COMMAND
|
|
133
128
|
running command...
|
|
134
129
|
$ eggs (--version|-v)
|
|
135
|
-
penguins-eggs/9.
|
|
130
|
+
penguins-eggs/9.2.2 linux-x64 node-v16.16.0
|
|
136
131
|
$ eggs --help [COMMAND]
|
|
137
132
|
USAGE
|
|
138
133
|
$ eggs COMMAND
|
|
@@ -158,7 +153,6 @@ USAGE
|
|
|
158
153
|
* [`eggs krill`](#eggs-krill)
|
|
159
154
|
* [`eggs mom`](#eggs-mom)
|
|
160
155
|
* [`eggs produce`](#eggs-produce)
|
|
161
|
-
* [`eggs remove`](#eggs-remove)
|
|
162
156
|
* [`eggs syncfrom`](#eggs-syncfrom)
|
|
163
157
|
* [`eggs syncto`](#eggs-syncto)
|
|
164
158
|
* [`eggs tools clean`](#eggs-tools-clean)
|
|
@@ -189,7 +183,7 @@ DESCRIPTION
|
|
|
189
183
|
adapt monitor resolution for VM only
|
|
190
184
|
```
|
|
191
185
|
|
|
192
|
-
_See code: [src/commands/adapt.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.
|
|
186
|
+
_See code: [src/commands/adapt.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.2/src/commands/adapt.ts)_
|
|
193
187
|
|
|
194
188
|
## `eggs analyze`
|
|
195
189
|
|
|
@@ -210,7 +204,7 @@ EXAMPLES
|
|
|
210
204
|
$ sudo eggs analyze
|
|
211
205
|
```
|
|
212
206
|
|
|
213
|
-
_See code: [src/commands/analyze.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.
|
|
207
|
+
_See code: [src/commands/analyze.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.2/src/commands/analyze.ts)_
|
|
214
208
|
|
|
215
209
|
## `eggs autocomplete [SHELL]`
|
|
216
210
|
|
|
@@ -268,7 +262,7 @@ EXAMPLES
|
|
|
268
262
|
install calamares and create it's configuration's files
|
|
269
263
|
```
|
|
270
264
|
|
|
271
|
-
_See code: [src/commands/calamares.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.
|
|
265
|
+
_See code: [src/commands/calamares.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.2/src/commands/calamares.ts)_
|
|
272
266
|
|
|
273
267
|
## `eggs config`
|
|
274
268
|
|
|
@@ -292,7 +286,7 @@ EXAMPLES
|
|
|
292
286
|
Configure and install prerequisites deb packages to run it
|
|
293
287
|
```
|
|
294
288
|
|
|
295
|
-
_See code: [src/commands/config.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.
|
|
289
|
+
_See code: [src/commands/config.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.2/src/commands/config.ts)_
|
|
296
290
|
|
|
297
291
|
## `eggs dad`
|
|
298
292
|
|
|
@@ -312,7 +306,7 @@ DESCRIPTION
|
|
|
312
306
|
ask help from daddy - configuration helper
|
|
313
307
|
```
|
|
314
308
|
|
|
315
|
-
_See code: [src/commands/dad.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.
|
|
309
|
+
_See code: [src/commands/dad.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.2/src/commands/dad.ts)_
|
|
316
310
|
|
|
317
311
|
## `eggs export deb`
|
|
318
312
|
|
|
@@ -403,7 +397,7 @@ DESCRIPTION
|
|
|
403
397
|
informations about eggs configuration
|
|
404
398
|
```
|
|
405
399
|
|
|
406
|
-
_See code: [src/commands/info.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.
|
|
400
|
+
_See code: [src/commands/info.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.2/src/commands/info.ts)_
|
|
407
401
|
|
|
408
402
|
## `eggs install`
|
|
409
403
|
|
|
@@ -411,10 +405,9 @@ command-line system installer - the egg became a penguin!
|
|
|
411
405
|
|
|
412
406
|
```
|
|
413
407
|
USAGE
|
|
414
|
-
$ eggs install [-
|
|
408
|
+
$ eggs install [-k] [-p] [-h] [-v]
|
|
415
409
|
|
|
416
410
|
FLAGS
|
|
417
|
-
-c, --cli force use CLI installer
|
|
418
411
|
-h, --help Show CLI help.
|
|
419
412
|
-k, --crypted crypted CLI installation
|
|
420
413
|
-p, --pve Proxmox VE install
|
|
@@ -424,13 +417,15 @@ DESCRIPTION
|
|
|
424
417
|
command-line system installer - the egg became a penguin!
|
|
425
418
|
|
|
426
419
|
ALIASES
|
|
427
|
-
$ eggs
|
|
420
|
+
$ eggs krill
|
|
428
421
|
|
|
429
422
|
EXAMPLES
|
|
430
423
|
$ eggs install
|
|
431
|
-
Install the system using
|
|
424
|
+
Install the system using krill installer
|
|
432
425
|
```
|
|
433
426
|
|
|
427
|
+
_See code: [src/commands/install.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.2/src/commands/install.ts)_
|
|
428
|
+
|
|
434
429
|
## `eggs kill`
|
|
435
430
|
|
|
436
431
|
kill the eggs/free the nest
|
|
@@ -451,7 +446,7 @@ EXAMPLES
|
|
|
451
446
|
kill the eggs/free the nest
|
|
452
447
|
```
|
|
453
448
|
|
|
454
|
-
_See code: [src/commands/kill.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.
|
|
449
|
+
_See code: [src/commands/kill.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.2/src/commands/kill.ts)_
|
|
455
450
|
|
|
456
451
|
## `eggs krill`
|
|
457
452
|
|
|
@@ -459,10 +454,9 @@ command-line system installer - the egg became a penguin!
|
|
|
459
454
|
|
|
460
455
|
```
|
|
461
456
|
USAGE
|
|
462
|
-
$ eggs krill [-
|
|
457
|
+
$ eggs krill [-k] [-p] [-h] [-v]
|
|
463
458
|
|
|
464
459
|
FLAGS
|
|
465
|
-
-c, --cli force use CLI installer
|
|
466
460
|
-h, --help Show CLI help.
|
|
467
461
|
-k, --crypted crypted CLI installation
|
|
468
462
|
-p, --pve Proxmox VE install
|
|
@@ -472,15 +466,13 @@ DESCRIPTION
|
|
|
472
466
|
command-line system installer - the egg became a penguin!
|
|
473
467
|
|
|
474
468
|
ALIASES
|
|
475
|
-
$ eggs
|
|
469
|
+
$ eggs krill
|
|
476
470
|
|
|
477
471
|
EXAMPLES
|
|
478
472
|
$ eggs install
|
|
479
|
-
Install the system using
|
|
473
|
+
Install the system using krill installer
|
|
480
474
|
```
|
|
481
475
|
|
|
482
|
-
_See code: [src/commands/krill.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.1.34/src/commands/krill.ts)_
|
|
483
|
-
|
|
484
476
|
## `eggs mom`
|
|
485
477
|
|
|
486
478
|
ask for mommy - gui helper
|
|
@@ -496,7 +488,7 @@ DESCRIPTION
|
|
|
496
488
|
ask for mommy - gui helper
|
|
497
489
|
```
|
|
498
490
|
|
|
499
|
-
_See code: [src/commands/mom.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.
|
|
491
|
+
_See code: [src/commands/mom.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.2/src/commands/mom.ts)_
|
|
500
492
|
|
|
501
493
|
## `eggs produce`
|
|
502
494
|
|
|
@@ -504,11 +496,12 @@ produce a live image from your system whithout your data
|
|
|
504
496
|
|
|
505
497
|
```
|
|
506
498
|
USAGE
|
|
507
|
-
$ eggs produce [-p <value>] [--basename <value>] [-b] [-f] [-n] [-m] [-v] [-y] [-s] [-h] [--theme
|
|
508
|
-
[--addons <value>] [--release]
|
|
499
|
+
$ eggs produce [-p <value>] [--basename <value>] [-b] [-c] [-f] [-n] [-m] [-v] [-y] [-s] [-h] [--theme
|
|
500
|
+
<value>] [--addons <value>] [--release]
|
|
509
501
|
|
|
510
502
|
FLAGS
|
|
511
|
-
-b, --backup backup mode
|
|
503
|
+
-b, --backup backup mode (CRYPTED)
|
|
504
|
+
-c, --clone clone mode
|
|
512
505
|
-f, --fast fast compression
|
|
513
506
|
-h, --help Show CLI help.
|
|
514
507
|
-m, --max max compression
|
|
@@ -519,7 +512,7 @@ FLAGS
|
|
|
519
512
|
-y, --yolk -y force yolk renew
|
|
520
513
|
--addons=<value>... addons to be used: adapt, ichoice, pve, rsupport
|
|
521
514
|
--basename=<value> basename
|
|
522
|
-
--release release:
|
|
515
|
+
--release release: max compression, remove penguins-eggs and calamares after installation
|
|
523
516
|
--theme=<value> theme for livecd, calamares branding and partitions
|
|
524
517
|
|
|
525
518
|
DESCRIPTION
|
|
@@ -557,41 +550,11 @@ EXAMPLES
|
|
|
557
550
|
in /home/eggs/ovarium and you can customize all you need
|
|
558
551
|
```
|
|
559
552
|
|
|
560
|
-
_See code: [src/commands/produce.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.
|
|
561
|
-
|
|
562
|
-
## `eggs remove`
|
|
563
|
-
|
|
564
|
-
remove eggs and others stuff
|
|
565
|
-
|
|
566
|
-
```
|
|
567
|
-
USAGE
|
|
568
|
-
$ eggs remove [-p] [-a] [-h] [-v]
|
|
569
|
-
|
|
570
|
-
FLAGS
|
|
571
|
-
-a, --autoremove remove eggs packages dependencies
|
|
572
|
-
-h, --help Show CLI help.
|
|
573
|
-
-p, --purge remove eggs configurations files
|
|
574
|
-
-v, --verbose verbose
|
|
575
|
-
|
|
576
|
-
DESCRIPTION
|
|
577
|
-
remove eggs and others stuff
|
|
578
|
-
|
|
579
|
-
EXAMPLES
|
|
580
|
-
$ sudo eggs remove
|
|
581
|
-
remove eggs
|
|
582
|
-
|
|
583
|
-
$ sudo eggs remove --purge
|
|
584
|
-
remove eggs, eggs configurations, configuration's files
|
|
585
|
-
|
|
586
|
-
$ sudo eggs remove --autoremove
|
|
587
|
-
remove eggs, eggs configurations, packages dependencies
|
|
588
|
-
```
|
|
589
|
-
|
|
590
|
-
_See code: [src/commands/remove.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.1.34/src/commands/remove.ts)_
|
|
553
|
+
_See code: [src/commands/produce.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.2/src/commands/produce.ts)_
|
|
591
554
|
|
|
592
555
|
## `eggs syncfrom`
|
|
593
556
|
|
|
594
|
-
|
|
557
|
+
restore users and user data from a LUKS volumes
|
|
595
558
|
|
|
596
559
|
```
|
|
597
560
|
USAGE
|
|
@@ -605,17 +568,17 @@ FLAGS
|
|
|
605
568
|
--delete=<value> rsync --delete delete extraneous files from dest dirs
|
|
606
569
|
|
|
607
570
|
DESCRIPTION
|
|
608
|
-
|
|
571
|
+
restore users and user data from a LUKS volumes
|
|
609
572
|
|
|
610
573
|
EXAMPLES
|
|
611
574
|
$ sudo eggs restore
|
|
612
575
|
```
|
|
613
576
|
|
|
614
|
-
_See code: [src/commands/syncfrom.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.
|
|
577
|
+
_See code: [src/commands/syncfrom.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.2/src/commands/syncfrom.ts)_
|
|
615
578
|
|
|
616
579
|
## `eggs syncto`
|
|
617
580
|
|
|
618
|
-
|
|
581
|
+
saves users and user data in a LUKS volume inside the iso
|
|
619
582
|
|
|
620
583
|
```
|
|
621
584
|
USAGE
|
|
@@ -628,13 +591,13 @@ FLAGS
|
|
|
628
591
|
--delete=<value> rsync --delete delete extraneous files from dest dirs
|
|
629
592
|
|
|
630
593
|
DESCRIPTION
|
|
631
|
-
|
|
594
|
+
saves users and user data in a LUKS volume inside the iso
|
|
632
595
|
|
|
633
596
|
EXAMPLES
|
|
634
597
|
$ sudo eggs syncto
|
|
635
598
|
```
|
|
636
599
|
|
|
637
|
-
_See code: [src/commands/syncto.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.
|
|
600
|
+
_See code: [src/commands/syncto.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.2/src/commands/syncto.ts)_
|
|
638
601
|
|
|
639
602
|
## `eggs tools clean`
|
|
640
603
|
|
|
@@ -729,7 +692,7 @@ EXAMPLES
|
|
|
729
692
|
update/upgrade the penguin's eggs tool
|
|
730
693
|
```
|
|
731
694
|
|
|
732
|
-
_See code: [src/commands/update.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.
|
|
695
|
+
_See code: [src/commands/update.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.2/src/commands/update.ts)_
|
|
733
696
|
|
|
734
697
|
## `eggs version`
|
|
735
698
|
|
|
@@ -867,7 +830,7 @@ There is a [Penguin's eggs official book](https://penguins-eggs.net/book/) and s
|
|
|
867
830
|
* [blog](https://penguins-eggs.net)
|
|
868
831
|
* [facebook penguin's eggs group](https://www.facebook.com/groups/128861437762355/)
|
|
869
832
|
* [sources](https://github.com/pieroproietti/penguins-krill)
|
|
870
|
-
* [telegram](
|
|
833
|
+
* [telegram](https://t.me/penguins_eggs) penguin's eggs channel
|
|
871
834
|
* [twitter](https://twitter.com/pieroproietti)
|
|
872
835
|
|
|
873
836
|
You can contact me at pieroproietti@gmail.com or [meet me](https://meet.jit.si/PenguinsEggsMeeting)
|
|
@@ -4,8 +4,8 @@ Version=1.0
|
|
|
4
4
|
Name=Install System
|
|
5
5
|
GenericName=System Installer
|
|
6
6
|
Keywords=calamares;system;installer;
|
|
7
|
-
Exec=pkexec calamares
|
|
8
|
-
# Exec=pkexec
|
|
7
|
+
Exec=sh -c "pkexec /usr/bin/calamares"
|
|
8
|
+
# Exec=pkexec calamares
|
|
9
9
|
TryExec=calamares
|
|
10
10
|
Comment=Calamares — System Installer
|
|
11
11
|
Icon=install-debian
|
|
@@ -11,7 +11,7 @@ sequence:
|
|
|
11
11
|
- locale
|
|
12
12
|
- keyboard
|
|
13
13
|
- partition
|
|
14
|
-
|
|
14
|
+
{{createUsers}}users
|
|
15
15
|
- summary
|
|
16
16
|
- exec:
|
|
17
17
|
- partition
|
|
@@ -24,7 +24,7 @@ sequence:
|
|
|
24
24
|
- keyboard
|
|
25
25
|
- localecfg
|
|
26
26
|
- luksbootkeyfile
|
|
27
|
-
|
|
27
|
+
{{createUsers}}users
|
|
28
28
|
{{hasDisplaymanager}}displaymanager
|
|
29
29
|
- networkcfg
|
|
30
30
|
- hwclock
|
|
@@ -52,7 +52,7 @@ sequence:
|
|
|
52
52
|
- locale
|
|
53
53
|
- keyboard
|
|
54
54
|
- partition
|
|
55
|
-
|
|
55
|
+
{{createUsers}}users
|
|
56
56
|
- summary
|
|
57
57
|
|
|
58
58
|
# Phase 2 - install.
|
|
@@ -72,7 +72,7 @@ sequence:
|
|
|
72
72
|
- locale
|
|
73
73
|
- keyboard
|
|
74
74
|
- localecfg
|
|
75
|
-
|
|
75
|
+
{{createUsers}}users
|
|
76
76
|
{{hasDisplaymanager}}displaymanager
|
|
77
77
|
- networkcfg
|
|
78
78
|
- hwclock
|
|
@@ -28,7 +28,7 @@ sequence:
|
|
|
28
28
|
- locale
|
|
29
29
|
- keyboard
|
|
30
30
|
- partition
|
|
31
|
-
|
|
31
|
+
{{createUsers}}users
|
|
32
32
|
- summary
|
|
33
33
|
- exec:
|
|
34
34
|
- partition
|
|
@@ -41,7 +41,7 @@ sequence:
|
|
|
41
41
|
- keyboard
|
|
42
42
|
- localecfg
|
|
43
43
|
- luksbootkeyfile
|
|
44
|
-
|
|
44
|
+
{{createUsers}}users
|
|
45
45
|
{{hasDisplaymanager}}displaymanager
|
|
46
46
|
- networkcfg
|
|
47
47
|
- hwclock
|
|
@@ -18,7 +18,7 @@ sequence:
|
|
|
18
18
|
- locale
|
|
19
19
|
- keyboard
|
|
20
20
|
- partition
|
|
21
|
-
|
|
21
|
+
{{createUsers}}users
|
|
22
22
|
- summary
|
|
23
23
|
|
|
24
24
|
# Phase 2 - install.
|
|
@@ -31,29 +31,22 @@ sequence:
|
|
|
31
31
|
- partition
|
|
32
32
|
- mount
|
|
33
33
|
- unpackfs
|
|
34
|
-
|
|
35
|
-
#{{hasSystemd}}machineid
|
|
34
|
+
- machineid
|
|
36
35
|
- fstab
|
|
37
36
|
- locale
|
|
38
37
|
- keyboard
|
|
39
38
|
- localecfg
|
|
40
|
-
|
|
39
|
+
{{createUsers}}users
|
|
41
40
|
{{hasDisplaymanager}}displaymanager
|
|
42
41
|
- networkcfg
|
|
43
42
|
- hwclock
|
|
44
|
-
#{{hasSystemd}}services-systemd
|
|
45
|
-
#- bootloader-config
|
|
46
43
|
- grubcfg
|
|
47
44
|
- bootloader
|
|
48
45
|
- packages
|
|
49
46
|
- luksbootkeyfile
|
|
50
47
|
- plymouthcfg
|
|
51
|
-
#- initramfscfg
|
|
52
|
-
#- initramfs
|
|
53
48
|
- removeuser
|
|
54
|
-
|
|
55
|
-
#- remove-link
|
|
56
|
-
#- sources-yolk-unmount
|
|
49
|
+
# shellprocess removelink
|
|
57
50
|
- umount
|
|
58
51
|
|
|
59
52
|
# Phase 3 - postinstall.
|
package/conf/exclude.list
CHANGED
|
@@ -1,107 +1,92 @@
|
|
|
1
|
-
# rsync excludes file for
|
|
2
|
-
# version
|
|
1
|
+
# rsync excludes file for refractasnapshot and refractasnapshot-gui
|
|
2
|
+
# version 9.3.4
|
|
3
3
|
|
|
4
|
-
#
|
|
4
|
+
# Exclude some system files. These are required, and you probably
|
|
5
|
+
# shouldn't change them.
|
|
5
6
|
|
|
6
|
-
|
|
7
|
-
cdrom/*
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
tmp/*
|
|
17
|
-
swapfile
|
|
7
|
+
- /dev/*
|
|
8
|
+
- /cdrom/*
|
|
9
|
+
- /media/*
|
|
10
|
+
- /swapfile
|
|
11
|
+
- /mnt/*
|
|
12
|
+
- /sys/*
|
|
13
|
+
- /proc/*
|
|
14
|
+
- /tmp/*
|
|
15
|
+
- /live
|
|
16
|
+
- /persistence.conf
|
|
18
17
|
|
|
19
18
|
# boot
|
|
20
|
-
boot/
|
|
21
|
-
|
|
22
|
-
boot/grub
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
19
|
+
- /boot/grub/grub.cfg
|
|
20
|
+
- /boot/grub/menu.lst
|
|
21
|
+
- /boot/grub/device.map
|
|
22
|
+
- /boot/*.bak
|
|
23
|
+
- /boot/*.old-dkms
|
|
24
|
+
- /etc/udev/rules.d/70-persistent-cd.rules
|
|
25
|
+
- /etc/udev/rules.d/70-persistent-net.rules
|
|
26
26
|
|
|
27
27
|
# etc
|
|
28
|
-
etc/
|
|
29
|
-
etc/
|
|
30
|
-
etc/blkid.tab
|
|
31
|
-
etc/
|
|
32
|
-
etc/crypttab
|
|
33
|
-
etc/fstab
|
|
34
|
-
etc/fstab.
|
|
35
|
-
etc/
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
etc/
|
|
39
|
-
etc/
|
|
40
|
-
etc/
|
|
41
|
-
etc/mailname
|
|
42
|
-
etc/mtab
|
|
43
|
-
etc/NetworkManager/system-connections/*
|
|
44
|
-
etc/pve/*
|
|
45
|
-
etc/udev/rules.d/70-persistent-cd.rules
|
|
46
|
-
etc/udev/rules.d/70-persistent-net.rules
|
|
47
|
-
#etc/resolv.conf
|
|
48
|
-
|
|
49
|
-
# /root
|
|
50
|
-
root/.bash_history
|
|
51
|
-
root/.dbus
|
|
52
|
-
root/.gconf
|
|
53
|
-
root/.gnome2
|
|
54
|
-
root/keyfile
|
|
55
|
-
|
|
56
|
-
# var
|
|
57
|
-
# var/cache
|
|
58
|
-
var/cache/apt/archives/*.deb
|
|
59
|
-
var/cache/apt-xapian-index/index.*
|
|
60
|
-
var/cache/apt-show-versions/*
|
|
61
|
-
var/cache/apt/*.bin
|
|
62
|
-
var/cache/apt/apt-file/*
|
|
63
|
-
var/cache/debconf/*-old
|
|
64
|
-
var/cache/lightdm
|
|
65
|
-
var/cache/samba/browse.dat
|
|
28
|
+
- /etc/apt/sources.list~
|
|
29
|
+
- /etc/mtab
|
|
30
|
+
- /etc/blkid.tab
|
|
31
|
+
- /etc/blkid.tab.old
|
|
32
|
+
- /etc/crypttab
|
|
33
|
+
- /etc/fstab
|
|
34
|
+
- /etc/fstab.d/*
|
|
35
|
+
- /etc/initramfs-tools/conf.d/resume # see remove-cryptroot and nocrypt.sh
|
|
36
|
+
- /etc/initramfs-tools/conf.d/cryptroot # see remove-cryptroot and nocrypt.sh
|
|
37
|
+
- /etc/machine-id
|
|
38
|
+
- /etc/popularity-contest.conf
|
|
39
|
+
- /etc/ssh/ssh_host_*_key*
|
|
40
|
+
- /etc/ssh/ssh_host_key*
|
|
66
41
|
|
|
67
|
-
#
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
var/lib/NetworkManager/*
|
|
76
|
-
var/lib/nfs/rpc_pipefs/*
|
|
77
|
-
var/lib/sudo/*
|
|
78
|
-
var/lib/udisks/*
|
|
79
|
-
var/lib/urandom/*
|
|
42
|
+
# Added for newer version of live-config/live-boot in wheezy
|
|
43
|
+
# These are only relevant here if you create a snapshot while
|
|
44
|
+
# you're running a live-CD or live-usb.
|
|
45
|
+
- /lib/live/overlay
|
|
46
|
+
- /lib/live/image
|
|
47
|
+
- /lib/live/rootfs
|
|
48
|
+
- /lib/live/mount
|
|
49
|
+
- /run/*
|
|
80
50
|
|
|
81
|
-
#
|
|
82
|
-
|
|
83
|
-
# apache2, clamav, pveprozy, samba, mysql, cga-update-manager
|
|
84
|
-
var/log/!(apache2|clamav|pveproxy|samba|mysql|cga-update-manager)
|
|
51
|
+
# eggs remove all under home
|
|
52
|
+
- /home/*
|
|
85
53
|
|
|
86
|
-
#
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
var/cache/brightness-settings-cache/*
|
|
54
|
+
# /root
|
|
55
|
+
- /root/.aptitude
|
|
56
|
+
- /root/.bash_history
|
|
57
|
+
- /root/.disk-manager.conf
|
|
58
|
+
- /root/.fstab.log
|
|
59
|
+
- /root/.lesshst
|
|
60
|
+
- /root/*/.log
|
|
61
|
+
- /root/.local/share/*
|
|
62
|
+
- /root/.nano_history
|
|
63
|
+
- /root/.synaptic
|
|
64
|
+
- /root/.VirtualBox
|
|
65
|
+
- /root/.ICEauthority
|
|
66
|
+
- /root/.Xauthority
|
|
67
|
+
- /root/.ssh
|
|
101
68
|
|
|
102
|
-
#
|
|
103
|
-
|
|
104
|
-
|
|
69
|
+
# Added for symlink /lib
|
|
70
|
+
- /usr/lib/live/overlay
|
|
71
|
+
- /usr/lib/live/image
|
|
72
|
+
- /usr/lib/live/rootfs
|
|
73
|
+
- /usr/lib/live/mount
|
|
105
74
|
|
|
106
|
-
#
|
|
107
|
-
var/cache/
|
|
75
|
+
# var
|
|
76
|
+
- /var/cache/apt/archives/*.deb
|
|
77
|
+
- /var/cache/apt/pkgcache.bin
|
|
78
|
+
- /var/cache/apt/srcpkgcache.bin
|
|
79
|
+
- /var/cache/apt/apt-file/*
|
|
80
|
+
- /var/cache/debconf/*~old
|
|
81
|
+
- /var/lib/apt/lists/*
|
|
82
|
+
- /var/lib/apt/*~
|
|
83
|
+
- /var/lib/apt/cdroms.list
|
|
84
|
+
- /var/lib/aptitude/*.old
|
|
85
|
+
- /var/lib/dhcp/*
|
|
86
|
+
- /var/lib/dpkg/*~old
|
|
87
|
+
- /var/spool/mail/*
|
|
88
|
+
- /var/mail/*
|
|
89
|
+
- /var/backups/*.gz
|
|
90
|
+
- /var/lib/dbus/machine-id
|
|
91
|
+
- /var/lib/live/config/*
|
|
92
|
+
- /usr/share/icons/*/icon-theme.cache
|