penguins-eggs 10.0.27 → 10.0.30
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 +39 -2
- package/README.md +51 -29
- package/addons/README.md +0 -2
- package/addons/eggs/adapt/applications/eggs-adapt.desktop +1 -1
- package/addons/eggs/theme/livecd/isolinux.main.alpine.cfg +43 -0
- package/addons/eggs/theme/livecd/{isolinux.main.cfg → isolinux.main.original.cfg} +1 -1
- package/conf/distros/alpine/README.md +1 -1
- package/conf/distros/alpine/calamares/calamares-modules/bootloader-config/bootloader-config.sh +40 -0
- package/conf/distros/alpine/calamares/calamares-modules/bootloader-config/module.yml +9 -0
- package/conf/distros/alpine/calamares/calamares-modules/cleanup/cleanup.sh +13 -0
- package/conf/distros/alpine/calamares/calamares-modules/cleanup/module.yml +9 -0
- package/conf/distros/alpine/calamares/modules/bootloader.yml +57 -0
- package/conf/distros/alpine/calamares/modules/displaymanager.yml +23 -0
- package/conf/distros/alpine/calamares/modules/finished.yml +5 -0
- package/conf/distros/alpine/calamares/modules/fstab.yml +12 -0
- package/conf/distros/alpine/calamares/modules/locale.yml +98 -0
- package/conf/distros/alpine/calamares/modules/luksopenswaphookcfg.yml +5 -0
- package/conf/distros/alpine/calamares/modules/machineid.yml +17 -0
- package/conf/distros/alpine/calamares/modules/mount.yml +56 -0
- package/conf/distros/alpine/calamares/modules/packages.yml +6 -0
- package/conf/distros/alpine/calamares/modules/partition.yml +242 -0
- package/conf/distros/alpine/calamares/modules/removeuser.yml +15 -0
- package/conf/distros/alpine/calamares/modules/unpackfs.yml +6 -0
- package/conf/distros/alpine/calamares/modules/users.yml +18 -0
- package/conf/distros/alpine/calamares/modules/welcome.yml +19 -0
- package/conf/distros/alpine/calamares/settings.yml +57 -0
- package/conf/love.yaml +8 -0
- package/dist/classes/daddy.js +1 -1
- package/dist/classes/families/alpine.d.ts +1 -1
- package/dist/classes/families/alpine.js +70 -15
- package/dist/classes/incubation/distros/alpine.d.ts +32 -0
- package/dist/classes/incubation/distros/alpine.js +80 -0
- package/dist/classes/incubation/incubator.js +2 -2
- package/dist/classes/keyboards.js +78 -8
- package/dist/classes/ovary.js +10 -17
- package/dist/classes/pacman.js +6 -4
- package/dist/classes/pxe.d.ts +4 -4
- package/dist/classes/pxe.js +5 -5
- package/dist/classes/tailor.js +57 -9
- package/dist/classes/utils.js +5 -0
- package/dist/classes/xdg.js +1 -1
- package/dist/commands/love.d.ts +20 -0
- package/dist/commands/love.js +55 -0
- package/dist/commands/produce.js +3 -6
- package/dist/commands/syncfrom.d.ts +1 -1
- package/dist/commands/syncfrom.js +1 -1
- package/dist/components/summary.js +1 -1
- package/dist/interfaces/i-addons.d.ts +0 -1
- package/dist/krill/modules/add-user.js +1 -2
- package/dist/krill/modules/bootloader-config-alpine.d.ts +14 -0
- package/dist/krill/modules/bootloader-config-alpine.js +37 -0
- package/dist/krill/modules/bootloader-config.js +14 -5
- package/dist/krill/modules/machine-id.js +1 -1
- package/dist/krill/modules/mount-fs.js +5 -5
- package/dist/krill/modules/packages.js +58 -52
- package/dist/krill/prepare.js +1 -1
- package/dist/krill/sequence.d.ts +2 -0
- package/dist/krill/sequence.js +22 -0
- package/manpages/doc/man/eggs.1.gz +0 -0
- package/manpages/doc/man/eggs.html +21 -5
- package/mkinitfs/README.md +9 -0
- package/package.json +5 -5
- package/scripts/_eggs +9 -2
- package/scripts/eggs.bash +2 -1
- package/addons/eggs/ichoice/applications/eggs-ichoice.desktop +0 -23
- package/addons/eggs/ichoice/bin/eggs-ichoice.sh +0 -44
- package/scripts/love +0 -25
- /package/{addons/eggs/adapt/bin/adapt → scripts/adapt.sh} +0 -0
package/.oclif.manifest.json
CHANGED
|
@@ -488,6 +488,43 @@
|
|
|
488
488
|
"kill.js"
|
|
489
489
|
]
|
|
490
490
|
},
|
|
491
|
+
"love": {
|
|
492
|
+
"aliases": [],
|
|
493
|
+
"args": {},
|
|
494
|
+
"description": "the simplest way to get an egg!",
|
|
495
|
+
"examples": [
|
|
496
|
+
"eggs auto"
|
|
497
|
+
],
|
|
498
|
+
"flags": {
|
|
499
|
+
"help": {
|
|
500
|
+
"char": "h",
|
|
501
|
+
"description": "Show CLI help.",
|
|
502
|
+
"name": "help",
|
|
503
|
+
"allowNo": false,
|
|
504
|
+
"type": "boolean"
|
|
505
|
+
},
|
|
506
|
+
"verbose": {
|
|
507
|
+
"char": "v",
|
|
508
|
+
"name": "verbose",
|
|
509
|
+
"allowNo": false,
|
|
510
|
+
"type": "boolean"
|
|
511
|
+
}
|
|
512
|
+
},
|
|
513
|
+
"hasDynamicHelp": false,
|
|
514
|
+
"hiddenAliases": [],
|
|
515
|
+
"id": "love",
|
|
516
|
+
"pluginAlias": "penguins-eggs",
|
|
517
|
+
"pluginName": "penguins-eggs",
|
|
518
|
+
"pluginType": "core",
|
|
519
|
+
"strict": true,
|
|
520
|
+
"enableJsonFlag": false,
|
|
521
|
+
"isESM": true,
|
|
522
|
+
"relativePath": [
|
|
523
|
+
"dist",
|
|
524
|
+
"commands",
|
|
525
|
+
"love.js"
|
|
526
|
+
]
|
|
527
|
+
},
|
|
491
528
|
"mom": {
|
|
492
529
|
"aliases": [],
|
|
493
530
|
"args": {},
|
|
@@ -537,7 +574,7 @@
|
|
|
537
574
|
],
|
|
538
575
|
"flags": {
|
|
539
576
|
"addons": {
|
|
540
|
-
"description": "addons to be used: adapt,
|
|
577
|
+
"description": "addons to be used: adapt, pve, rsupport",
|
|
541
578
|
"name": "addons",
|
|
542
579
|
"hasDynamicHelp": false,
|
|
543
580
|
"multiple": true,
|
|
@@ -1461,5 +1498,5 @@
|
|
|
1461
1498
|
]
|
|
1462
1499
|
}
|
|
1463
1500
|
},
|
|
1464
|
-
"version": "10.0.
|
|
1501
|
+
"version": "10.0.30"
|
|
1465
1502
|
}
|
package/README.md
CHANGED
|
@@ -42,13 +42,13 @@ penguins-eggs
|
|
|
42
42
|
`penguins-eggs-10.0.x` depend on `nodejs >18`, not directly available in all the distros. We can rely on [nodesource](https://github.com/nodesource/distributions?tab=readme-ov-file#debian-and-ubuntu-based-distributions) adding them.
|
|
43
43
|
|
|
44
44
|
### using get-eggs
|
|
45
|
-
It's the most pratical way and is valid for Arch, Debian, Devuan
|
|
45
|
+
It's the most pratical way and is valid for Alpine, Arch, Debian, Devuan and Ubuntu. get-eggs configure automatically `nodesource` when need and install the right package. Copy and paste:
|
|
46
46
|
```
|
|
47
47
|
git clone https://github.com/pieroproietti/get-eggs
|
|
48
48
|
cd get-eggs
|
|
49
49
|
sudo ./get-eggs.sh
|
|
50
50
|
```
|
|
51
|
-
###
|
|
51
|
+
### Manual installation
|
|
52
52
|
|
|
53
53
|
#### Arch, Manjaro, Debian 12 bookworm, Ubuntu 24.04
|
|
54
54
|
Just download and install penguins-eggs-10.0.x.
|
|
@@ -60,7 +60,7 @@ Before to install `penguins-eggs-10.x` add the repos from `nodesource`, follow t
|
|
|
60
60
|
Use the package `penguins-eggs-10.x.x-bionic-x` - compilated against node16 - and follow this [indications](https://github.com/pieroproietti/penguins-eggs/issues/368#issuecomment-2169961955) to get `nodejs>16` available.
|
|
61
61
|
|
|
62
62
|
### Alpine Linux
|
|
63
|
-
|
|
63
|
+
A [package for Alpine](https://gitlab.alpinelinux.org/pieroproietti/aports/-/tree/master/testing/penguins-eggs) is on the way to be merged on testing. Consult [WAY-TO-ALPINE](https://github.com/pieroproietti/penguins-eggs/blob/master/DOCS/WAY-TO-ALPINE.md) for more informations.
|
|
64
64
|
|
|
65
65
|
# Introduction
|
|
66
66
|
|
|
@@ -454,6 +454,7 @@ sudo eggs produce --max
|
|
|
454
454
|
* [`eggs install`](#eggs-install)
|
|
455
455
|
* [`eggs kill`](#eggs-kill)
|
|
456
456
|
* [`eggs krill`](#eggs-krill)
|
|
457
|
+
* [`eggs love`](#eggs-love)
|
|
457
458
|
* [`eggs mom`](#eggs-mom)
|
|
458
459
|
* [`eggs produce`](#eggs-produce)
|
|
459
460
|
* [`eggs status`](#eggs-status)
|
|
@@ -490,7 +491,7 @@ EXAMPLES
|
|
|
490
491
|
$ eggs adapt
|
|
491
492
|
```
|
|
492
493
|
|
|
493
|
-
_See code: [src/commands/adapt.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
494
|
+
_See code: [src/commands/adapt.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.30/src/commands/adapt.ts)_
|
|
494
495
|
|
|
495
496
|
## `eggs analyze`
|
|
496
497
|
|
|
@@ -511,7 +512,7 @@ EXAMPLES
|
|
|
511
512
|
sudo eggs analyze
|
|
512
513
|
```
|
|
513
514
|
|
|
514
|
-
_See code: [src/commands/analyze.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
515
|
+
_See code: [src/commands/analyze.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.30/src/commands/analyze.ts)_
|
|
515
516
|
|
|
516
517
|
## `eggs autocomplete [SHELL]`
|
|
517
518
|
|
|
@@ -575,7 +576,7 @@ EXAMPLES
|
|
|
575
576
|
sudo eggs calamares --remove
|
|
576
577
|
```
|
|
577
578
|
|
|
578
|
-
_See code: [src/commands/calamares.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
579
|
+
_See code: [src/commands/calamares.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.30/src/commands/calamares.ts)_
|
|
579
580
|
|
|
580
581
|
## `eggs config`
|
|
581
582
|
|
|
@@ -602,7 +603,7 @@ EXAMPLES
|
|
|
602
603
|
sudo eggs config --clean --nointeractive
|
|
603
604
|
```
|
|
604
605
|
|
|
605
|
-
_See code: [src/commands/config.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
606
|
+
_See code: [src/commands/config.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.30/src/commands/config.ts)_
|
|
606
607
|
|
|
607
608
|
## `eggs cuckoo`
|
|
608
609
|
|
|
@@ -622,7 +623,7 @@ EXAMPLES
|
|
|
622
623
|
sudo eggs cuckoo
|
|
623
624
|
```
|
|
624
625
|
|
|
625
|
-
_See code: [src/commands/cuckoo.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
626
|
+
_See code: [src/commands/cuckoo.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.30/src/commands/cuckoo.ts)_
|
|
626
627
|
|
|
627
628
|
## `eggs dad`
|
|
628
629
|
|
|
@@ -650,7 +651,7 @@ EXAMPLES
|
|
|
650
651
|
sudo dad --default
|
|
651
652
|
```
|
|
652
653
|
|
|
653
|
-
_See code: [src/commands/dad.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
654
|
+
_See code: [src/commands/dad.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.30/src/commands/dad.ts)_
|
|
654
655
|
|
|
655
656
|
## `eggs export deb`
|
|
656
657
|
|
|
@@ -677,7 +678,7 @@ EXAMPLES
|
|
|
677
678
|
$ eggs export deb --all
|
|
678
679
|
```
|
|
679
680
|
|
|
680
|
-
_See code: [src/commands/export/deb.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
681
|
+
_See code: [src/commands/export/deb.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.30/src/commands/export/deb.ts)_
|
|
681
682
|
|
|
682
683
|
## `eggs export iso`
|
|
683
684
|
|
|
@@ -702,7 +703,7 @@ EXAMPLES
|
|
|
702
703
|
$ eggs export iso --clean
|
|
703
704
|
```
|
|
704
705
|
|
|
705
|
-
_See code: [src/commands/export/iso.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
706
|
+
_See code: [src/commands/export/iso.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.30/src/commands/export/iso.ts)_
|
|
706
707
|
|
|
707
708
|
## `eggs help [COMMAND]`
|
|
708
709
|
|
|
@@ -763,7 +764,7 @@ EXAMPLES
|
|
|
763
764
|
sudo eggs install --chroot
|
|
764
765
|
```
|
|
765
766
|
|
|
766
|
-
_See code: [src/commands/install.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
767
|
+
_See code: [src/commands/install.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.30/src/commands/install.ts)_
|
|
767
768
|
|
|
768
769
|
## `eggs kill`
|
|
769
770
|
|
|
@@ -786,7 +787,7 @@ EXAMPLES
|
|
|
786
787
|
sudo eggs kill
|
|
787
788
|
```
|
|
788
789
|
|
|
789
|
-
_See code: [src/commands/kill.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
790
|
+
_See code: [src/commands/kill.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.30/src/commands/kill.ts)_
|
|
790
791
|
|
|
791
792
|
## `eggs krill`
|
|
792
793
|
|
|
@@ -827,6 +828,27 @@ EXAMPLES
|
|
|
827
828
|
sudo eggs install --chroot
|
|
828
829
|
```
|
|
829
830
|
|
|
831
|
+
## `eggs love`
|
|
832
|
+
|
|
833
|
+
the simplest way to get an egg!
|
|
834
|
+
|
|
835
|
+
```
|
|
836
|
+
USAGE
|
|
837
|
+
$ eggs love [-h] [-v]
|
|
838
|
+
|
|
839
|
+
FLAGS
|
|
840
|
+
-h, --help Show CLI help.
|
|
841
|
+
-v, --verbose
|
|
842
|
+
|
|
843
|
+
DESCRIPTION
|
|
844
|
+
the simplest way to get an egg!
|
|
845
|
+
|
|
846
|
+
EXAMPLES
|
|
847
|
+
$ eggs auto
|
|
848
|
+
```
|
|
849
|
+
|
|
850
|
+
_See code: [src/commands/love.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.30/src/commands/love.ts)_
|
|
851
|
+
|
|
830
852
|
## `eggs mom`
|
|
831
853
|
|
|
832
854
|
ask help from mommy - TUI helper
|
|
@@ -845,7 +867,7 @@ EXAMPLES
|
|
|
845
867
|
$ eggs mom
|
|
846
868
|
```
|
|
847
869
|
|
|
848
|
-
_See code: [src/commands/mom.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
870
|
+
_See code: [src/commands/mom.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.30/src/commands/mom.ts)_
|
|
849
871
|
|
|
850
872
|
## `eggs produce`
|
|
851
873
|
|
|
@@ -870,7 +892,7 @@ FLAGS
|
|
|
870
892
|
-u, --unsecure /root contents are included on live
|
|
871
893
|
-v, --verbose verbose
|
|
872
894
|
-y, --yolk force yolk renew
|
|
873
|
-
--addons=<value>... addons to be used: adapt,
|
|
895
|
+
--addons=<value>... addons to be used: adapt, pve, rsupport
|
|
874
896
|
--basename=<value> basename
|
|
875
897
|
--excludes=<value>... use: static, homes, home
|
|
876
898
|
--links=<value>... desktop links
|
|
@@ -902,7 +924,7 @@ EXAMPLES
|
|
|
902
924
|
sudo eggs produce --excludes home # exclude ~/*
|
|
903
925
|
```
|
|
904
926
|
|
|
905
|
-
_See code: [src/commands/produce.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
927
|
+
_See code: [src/commands/produce.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.30/src/commands/produce.ts)_
|
|
906
928
|
|
|
907
929
|
## `eggs status`
|
|
908
930
|
|
|
@@ -923,7 +945,7 @@ EXAMPLES
|
|
|
923
945
|
$ eggs status
|
|
924
946
|
```
|
|
925
947
|
|
|
926
|
-
_See code: [src/commands/status.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
948
|
+
_See code: [src/commands/status.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.30/src/commands/status.ts)_
|
|
927
949
|
|
|
928
950
|
## `eggs syncfrom`
|
|
929
951
|
|
|
@@ -949,7 +971,7 @@ EXAMPLES
|
|
|
949
971
|
sudo eggs syncfrom --file /path/to/luks-volume
|
|
950
972
|
```
|
|
951
973
|
|
|
952
|
-
_See code: [src/commands/syncfrom.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
974
|
+
_See code: [src/commands/syncfrom.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.30/src/commands/syncfrom.ts)_
|
|
953
975
|
|
|
954
976
|
## `eggs syncto`
|
|
955
977
|
|
|
@@ -976,7 +998,7 @@ EXAMPLES
|
|
|
976
998
|
sudo eggs syncto --excludes
|
|
977
999
|
```
|
|
978
1000
|
|
|
979
|
-
_See code: [src/commands/syncto.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
1001
|
+
_See code: [src/commands/syncto.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.30/src/commands/syncto.ts)_
|
|
980
1002
|
|
|
981
1003
|
## `eggs tools clean`
|
|
982
1004
|
|
|
@@ -998,7 +1020,7 @@ EXAMPLES
|
|
|
998
1020
|
sudo eggs tools clean
|
|
999
1021
|
```
|
|
1000
1022
|
|
|
1001
|
-
_See code: [src/commands/tools/clean.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
1023
|
+
_See code: [src/commands/tools/clean.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.30/src/commands/tools/clean.ts)_
|
|
1002
1024
|
|
|
1003
1025
|
## `eggs tools ppa`
|
|
1004
1026
|
|
|
@@ -1024,7 +1046,7 @@ EXAMPLES
|
|
|
1024
1046
|
sudo eggs tools ppa --remove
|
|
1025
1047
|
```
|
|
1026
1048
|
|
|
1027
|
-
_See code: [src/commands/tools/ppa.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
1049
|
+
_See code: [src/commands/tools/ppa.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.30/src/commands/tools/ppa.ts)_
|
|
1028
1050
|
|
|
1029
1051
|
## `eggs tools skel`
|
|
1030
1052
|
|
|
@@ -1048,7 +1070,7 @@ EXAMPLES
|
|
|
1048
1070
|
sudo eggs tools skel --user user-to-be-copied
|
|
1049
1071
|
```
|
|
1050
1072
|
|
|
1051
|
-
_See code: [src/commands/tools/skel.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
1073
|
+
_See code: [src/commands/tools/skel.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.30/src/commands/tools/skel.ts)_
|
|
1052
1074
|
|
|
1053
1075
|
## `eggs tools stat`
|
|
1054
1076
|
|
|
@@ -1074,7 +1096,7 @@ EXAMPLES
|
|
|
1074
1096
|
$ eggs tools stat --year
|
|
1075
1097
|
```
|
|
1076
1098
|
|
|
1077
|
-
_See code: [src/commands/tools/stat.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
1099
|
+
_See code: [src/commands/tools/stat.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.30/src/commands/tools/stat.ts)_
|
|
1078
1100
|
|
|
1079
1101
|
## `eggs tools yolk`
|
|
1080
1102
|
|
|
@@ -1095,7 +1117,7 @@ EXAMPLES
|
|
|
1095
1117
|
sudo eggs tools yolk
|
|
1096
1118
|
```
|
|
1097
1119
|
|
|
1098
|
-
_See code: [src/commands/tools/yolk.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
1120
|
+
_See code: [src/commands/tools/yolk.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.30/src/commands/tools/yolk.ts)_
|
|
1099
1121
|
|
|
1100
1122
|
## `eggs update`
|
|
1101
1123
|
|
|
@@ -1116,7 +1138,7 @@ EXAMPLES
|
|
|
1116
1138
|
$ eggs update
|
|
1117
1139
|
```
|
|
1118
1140
|
|
|
1119
|
-
_See code: [src/commands/update.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
1141
|
+
_See code: [src/commands/update.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.30/src/commands/update.ts)_
|
|
1120
1142
|
|
|
1121
1143
|
## `eggs version`
|
|
1122
1144
|
|
|
@@ -1162,7 +1184,7 @@ EXAMPLES
|
|
|
1162
1184
|
$ eggs wardrobe get your-wardrobe
|
|
1163
1185
|
```
|
|
1164
1186
|
|
|
1165
|
-
_See code: [src/commands/wardrobe/get.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
1187
|
+
_See code: [src/commands/wardrobe/get.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.30/src/commands/wardrobe/get.ts)_
|
|
1166
1188
|
|
|
1167
1189
|
## `eggs wardrobe list [REPO]`
|
|
1168
1190
|
|
|
@@ -1191,7 +1213,7 @@ EXAMPLES
|
|
|
1191
1213
|
$ eggs wardrobe list --distro arch
|
|
1192
1214
|
```
|
|
1193
1215
|
|
|
1194
|
-
_See code: [src/commands/wardrobe/list.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
1216
|
+
_See code: [src/commands/wardrobe/list.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.30/src/commands/wardrobe/list.ts)_
|
|
1195
1217
|
|
|
1196
1218
|
## `eggs wardrobe show [REPO]`
|
|
1197
1219
|
|
|
@@ -1221,7 +1243,7 @@ EXAMPLES
|
|
|
1221
1243
|
$ eggs wardrobe show accessories/
|
|
1222
1244
|
```
|
|
1223
1245
|
|
|
1224
|
-
_See code: [src/commands/wardrobe/show.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
1246
|
+
_See code: [src/commands/wardrobe/show.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.30/src/commands/wardrobe/show.ts)_
|
|
1225
1247
|
|
|
1226
1248
|
## `eggs wardrobe wear [REPO]`
|
|
1227
1249
|
|
|
@@ -1252,7 +1274,7 @@ EXAMPLES
|
|
|
1252
1274
|
sudo eggs wardrobe wear wagtail/waydroid
|
|
1253
1275
|
```
|
|
1254
1276
|
|
|
1255
|
-
_See code: [src/commands/wardrobe/wear.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
1277
|
+
_See code: [src/commands/wardrobe/wear.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.30/src/commands/wardrobe/wear.ts)_
|
|
1256
1278
|
<!-- commandsstop -->
|
|
1257
1279
|
|
|
1258
1280
|
# penGUI
|
package/addons/README.md
CHANGED
|
@@ -61,8 +61,6 @@ theme there are additional addons provided:
|
|
|
61
61
|
* **--adapt** it is an addon that I often use - working mainly on virtual machines -
|
|
62
62
|
and allows me to to adapt with a click the monitor of the VM to the set
|
|
63
63
|
video window;
|
|
64
|
-
* __--ichoice__ allows the selection of the installer between calamares and krill
|
|
65
|
-
(recommended on machines with little memory < 1GB);
|
|
66
64
|
* __--pve__ create a desktop icon to admin a [proxmox-ve](https://www.proxmox.com/en/proxmox-ve) installed locally, it's incredible but can work on the live iso too. You can follow this easy guide: [Install Proxmox VE on Debian 11 Bullseye](https://pve.proxmox.com/wiki/Install_Proxmox_VE_on_Debian_11_Bullseye);
|
|
67
65
|
* __--rsupport__ create an icon for [dwagent](https://www.dwservice.net) that must be installed locally.
|
|
68
66
|
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
# eggs: isolinux.main.alpine.cfg
|
|
2
|
+
#
|
|
3
|
+
path
|
|
4
|
+
include isolinux.theme.cfg
|
|
5
|
+
DEFAULT vesamenu.c32
|
|
6
|
+
|
|
7
|
+
TIMEOUT 100
|
|
8
|
+
PROMPT 0
|
|
9
|
+
|
|
10
|
+
LABEL alpine
|
|
11
|
+
MENU LABEL {{{fullname}}}
|
|
12
|
+
SAY "Booting {{{fullname}}} Alpine"
|
|
13
|
+
LINUX {{{vmlinuz}}}
|
|
14
|
+
INITRD {{{initrdImg}}}
|
|
15
|
+
FDTDIR /live/dtbs-lts
|
|
16
|
+
APPEND modules=loop,squashfs,sd-mod,usb-storage,cdrom
|
|
17
|
+
|
|
18
|
+
LABEL Safe
|
|
19
|
+
MENU LABEL {{{fullname}}} Safe Mode
|
|
20
|
+
SAY "Booting {{{fullname}}} GNU/Linux (kernel {{{kernel}}})"
|
|
21
|
+
LINUX {{{vmlinuz}}}
|
|
22
|
+
append initrd={{{initrdImg}}} {{{kernel_parameters}}} auto noprompt priority=critical nomodeset apparmor=0 net.ifnames=0 noapic noapm nodma nomce nolapic nosmp vga=normal mitigations=off amd_pstate.enable=0 intel_pstate=disable loglevel=0 nowatchdog elevator=noop slab_nomerge init_on_alloc=1 init_on_free=1 page_alloc.shuffle=1 pti=on vsyscall=none debugfs=off oops=panic module.sig_enforce=1 lockdown=confidentiality mce=0 loglevel=0 fsck.mode=skip quiet splash
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
label Text
|
|
26
|
+
menu label {{{fullname}}} Text Mode
|
|
27
|
+
say "Booting {{{fullname}}} GNU/Linux (kernel {{{kernel}}})"
|
|
28
|
+
linux {{{vmlinuz}}}
|
|
29
|
+
append initrd={{{initrdImg}}} {{{kernel_parameters}}} auto noprompt priority=critical init 3 mitigations=off amd_pstate.enable=0 intel_pstate=disable loglevel=0 nowatchdog elevator=noop slab_nomerge init_on_alloc=1 init_on_free=1 page_alloc.shuffle=1 pti=on vsyscall=none debugfs=off oops=panic module.sig_enforce=1 lockdown=confidentiality mce=0 loglevel=0 fsck.mode=skip quiet splash
|
|
30
|
+
|
|
31
|
+
label local
|
|
32
|
+
menu label Boot from local disk
|
|
33
|
+
COM32 chain.c32
|
|
34
|
+
APPEND hd0
|
|
35
|
+
say "Booting from the first hard drive"
|
|
36
|
+
|
|
37
|
+
### ORIGINAL
|
|
38
|
+
#LABEL live
|
|
39
|
+
#MENU LABEL Linux lts
|
|
40
|
+
#KERNEL /boot/vmlinuz-lts
|
|
41
|
+
#INITRD /boot/intel-ucode.img,/boot/amd-ucode.img,/boot/initramfs-lts
|
|
42
|
+
#FDTDIR /boot/dtbs-lts
|
|
43
|
+
#APPEND modules=loop,squashfs,sd-mod,usb-storage quiet
|
|
@@ -11,7 +11,7 @@ timeout 100
|
|
|
11
11
|
label Live
|
|
12
12
|
menu label {{{fullname}}} Live/Installation Mode
|
|
13
13
|
say "Booting {{{fullname}}} GNU/Linux (kernel {{{kernel}}})"
|
|
14
|
-
linux {{{vmlinuz}}}
|
|
14
|
+
linux {{{vmlinuz}}}
|
|
15
15
|
append initrd={{{initrdImg}}} {{{kernel_parameters}}} auto noprompt priority=critical mitigations=off amd_pstate.enable=0 intel_pstate=disable loglevel=0 nowatchdog elevator=noop slab_nomerge init_on_alloc=1 init_on_free=1 page_alloc.shuffle=1 pti=on vsyscall=none debugfs=off oops=panic module.sig_enforce=1 lockdown=confidentiality mce=0 loglevel=0 fsck.mode=skip quiet splash
|
|
16
16
|
|
|
17
17
|
|
package/conf/distros/alpine/calamares/calamares-modules/bootloader-config/bootloader-config.sh
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
#!/bin/bash
|
|
2
|
+
|
|
3
|
+
CHROOT=$(mount | grep proc | grep calamares | awk '{print $3}' | sed -e "s#/proc##g")
|
|
4
|
+
|
|
5
|
+
# Creo la directory $CHROOT/tmp se mancante
|
|
6
|
+
TMPDIR=$CHROOT/tmp
|
|
7
|
+
if [ ! -d $TMPDIR ]; then
|
|
8
|
+
echo mkdir $TMPDIR
|
|
9
|
+
fi
|
|
10
|
+
|
|
11
|
+
# patch: for same reason we need it for derivatives
|
|
12
|
+
chroot $CHROOT dpkg --configure -a
|
|
13
|
+
|
|
14
|
+
# eseguo apt update
|
|
15
|
+
chroot $CHROOT apt-get --yes --allow-unauthenticated update
|
|
16
|
+
# Set secure permissions for the initramfs if we're configuring
|
|
17
|
+
# full-disk-encryption. The initramfs is re-generated later in the
|
|
18
|
+
# installation process so we only set the permissions snippet without
|
|
19
|
+
# regenerating the initramfs right now:
|
|
20
|
+
if [ "$(mount | grep $CHROOT" " | cut -c -16)" = "/dev/mapper/luks" ]; then
|
|
21
|
+
echo "UMASK=0077" > $CHROOT/etc/initramfs-tools/conf.d/initramfs-permissions
|
|
22
|
+
fi
|
|
23
|
+
|
|
24
|
+
echo "Running bootloader-config..."
|
|
25
|
+
|
|
26
|
+
if [ -d /sys/firmware/efi/efivars ]; then
|
|
27
|
+
echo " * Installing grub-efi (uefi)..."
|
|
28
|
+
MACHINE=$(uname -m)
|
|
29
|
+
if [[ "$MACHINE" == x86_64* ]]; then
|
|
30
|
+
arch="amd64"
|
|
31
|
+
elif [[ "$MACHINE" == i*86 ]]; then
|
|
32
|
+
arch=""
|
|
33
|
+
elif [[ "$MACHINE" == arm* ]]; then
|
|
34
|
+
arch="arm64"
|
|
35
|
+
fi
|
|
36
|
+
DEBIAN_FRONTEND=nointeractive chroot $CHROOT apt-get --yes --allow-unauthenticated --no-install-recommends install grub-efi-${arch} cryptsetup keyutils
|
|
37
|
+
else
|
|
38
|
+
echo " * install grub... (bios)"
|
|
39
|
+
DEBIAN_FRONTEND=nointeractive chroot $CHROOT apt-get --yes --allow-unauthenticated --no-install-recommends install grub-pc cryptsetup
|
|
40
|
+
fi
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
#!/bin/bash
|
|
2
|
+
CHROOT=$(mount | grep proc | grep calamares | awk '{print $3}' | sed -e "s#/proc##g")
|
|
3
|
+
|
|
4
|
+
if [ -f "$CHROOT"/etc/motd ]; then
|
|
5
|
+
sed -i '/^eggs-start-message/,/^\eggs-end-message/{/^#/!{/^\$/!d;};}' "$CHROOT"/etc/motd
|
|
6
|
+
fi
|
|
7
|
+
|
|
8
|
+
if [ -f "$CHROOT"/etc/issue ]; then
|
|
9
|
+
sed -i '/^eggs-start-message/,/^\eggs-end-message/{/^#/!{/^\$/!d;};}' "$CHROOT"/etc/issue
|
|
10
|
+
fi
|
|
11
|
+
|
|
12
|
+
rm -f $CHROOT/usr/share/applications/install-system.desktop
|
|
13
|
+
rm -f $CHROOT/etc/systemd/system/getty@.service.d/override.conf # remove cli-autologin
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
# Alpine 3.18
|
|
2
|
+
# Bootloader configuration. The bootloader is installed to allow
|
|
3
|
+
# the system to start (and pick one of the installed operating
|
|
4
|
+
# systems to run).
|
|
5
|
+
---
|
|
6
|
+
# Define which bootloader you want to use for EFI installations
|
|
7
|
+
# Possible options are 'grub', 'sb-shim' and 'systemd-boot'.
|
|
8
|
+
efiBootLoader: "grub"
|
|
9
|
+
|
|
10
|
+
# systemd-boot configuration files settings, set kernel and initramfs file names
|
|
11
|
+
# and amount of time before default selection boots
|
|
12
|
+
kernel: "/vmlinuz-linux"
|
|
13
|
+
img: "/initramfs-linux.img"
|
|
14
|
+
fallback: "/initramfs-linux-fallback.img"
|
|
15
|
+
timeout: "10"
|
|
16
|
+
|
|
17
|
+
# Optionally set the menu entry name and kernel name to use in systemd-boot.
|
|
18
|
+
# If not specified here, these settings will be taken from branding.desc.
|
|
19
|
+
#
|
|
20
|
+
# bootloaderEntryName: "Generic GNU/Linux"
|
|
21
|
+
# kernelLine: ", with Stable-Kernel"
|
|
22
|
+
# fallbackKernelLine: ", with Stable-Kernel (fallback initramfs)"
|
|
23
|
+
|
|
24
|
+
# GRUB 2 binary names and boot directory
|
|
25
|
+
# Some distributions (e.g. Fedora) use grub2-* (resp. /boot/grub2/) names.
|
|
26
|
+
# These names are also used when using sb-shim, since that needs some
|
|
27
|
+
# GRUB functionality (notably grub-probe) to work. As needed, you may use
|
|
28
|
+
# complete paths like `/usr/bin/efibootmgr` for the executables.
|
|
29
|
+
#
|
|
30
|
+
grubInstall: "grub-install"
|
|
31
|
+
grubMkconfig: "grub-mkconfig"
|
|
32
|
+
grubCfg: "/boot/grub/grub.cfg"
|
|
33
|
+
grubProbe: "grub-probe"
|
|
34
|
+
efiBootMgr: "efibootmgr"
|
|
35
|
+
|
|
36
|
+
# Optionally set the bootloader ID to use for EFI. This is passed to
|
|
37
|
+
# grub-install --bootloader-id.
|
|
38
|
+
#
|
|
39
|
+
# If not set here, the value from bootloaderEntryName from branding.desc
|
|
40
|
+
# is used, with problematic characters (space and slash) replaced.
|
|
41
|
+
#
|
|
42
|
+
# The ID is also used as a directory name within the EFI environment,
|
|
43
|
+
# and the bootloader is copied from /boot/efi/EFI/<dirname>/ . When
|
|
44
|
+
# setting the option here, keep in mind that the name is sanitized
|
|
45
|
+
# (problematic characters, see above, are replaced).
|
|
46
|
+
#
|
|
47
|
+
# efiBootloaderId: "dirname"
|
|
48
|
+
efiBootloaderId: "Debian"
|
|
49
|
+
|
|
50
|
+
# Optionally install a copy of the GRUB EFI bootloader as the EFI
|
|
51
|
+
# fallback loader (either bootia32.efi or bootx64.efi depending on
|
|
52
|
+
# the system). This may be needed on certain systems (Intel DH87MC
|
|
53
|
+
# seems to be the only one). If you set this to false, take care
|
|
54
|
+
# to add another module to optionally install the fallback on those
|
|
55
|
+
# boards that need it.
|
|
56
|
+
# NOTE: eggs unti calamres 3.2 was installEFIFallback: false
|
|
57
|
+
installEFIFallback: true
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# Alpine 3.18
|
|
2
|
+
# Configure one or more display managers (e.g. SDDM)
|
|
3
|
+
# with a "best effort" approach.
|
|
4
|
+
---
|
|
5
|
+
#The DM module attempts to set up all the DMs found in this list, in that precise order.
|
|
6
|
+
#It also sets up autologin, if the feature is enabled in globalstorage.
|
|
7
|
+
#The displaymanagers list can also be set in globalstorage, and in that case it overrides anything set up here.
|
|
8
|
+
displaymanagers:
|
|
9
|
+
{{displaymanagers}}
|
|
10
|
+
|
|
11
|
+
#Enable the following settings to force a desktop environment in your displaymanager configuration file:
|
|
12
|
+
#defaultDesktopEnvironment:
|
|
13
|
+
# executable: "startkde"
|
|
14
|
+
# desktopFile: "plasma"
|
|
15
|
+
|
|
16
|
+
#If true, try to ensure that the user, group, /var directory etc. for the
|
|
17
|
+
#display manager are set up correctly. This is normally done by the distribution
|
|
18
|
+
#packages, and best left to them. Therefore, it is disabled by default.
|
|
19
|
+
basicSetup: false
|
|
20
|
+
|
|
21
|
+
#If true, setup autologin for openSUSE. This only makes sense on openSUSE
|
|
22
|
+
#derivatives or other systems where /etc/sysconfig/displaymanager exists.
|
|
23
|
+
sysconfigSetup: false
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# Alpine 3.18
|
|
2
|
+
---
|
|
3
|
+
mountOptions:
|
|
4
|
+
default: defaults,noatime
|
|
5
|
+
btrfs: defaults #,noatime,space_cache,autodefrag
|
|
6
|
+
ssdExtraMountOptions:
|
|
7
|
+
ext4: discard
|
|
8
|
+
jfs: discard
|
|
9
|
+
xfs: discard
|
|
10
|
+
swap: discard
|
|
11
|
+
btrfs: discard,compress=lzo
|
|
12
|
+
crypttabOptions: luks,keyscript=/bin/cat
|