penguins-eggs 9.6.21 → 9.6.23
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 +59 -36
- package/conf/eggs.yaml +1 -1
- package/conf/exclude.list.custom +3 -0
- package/conf/exclude.list.homes +67 -0
- package/conf/exclude.list.template +99 -0
- package/conf/exclude.list.usr +43 -0
- package/dist/classes/compressors.js +33 -14
- package/dist/classes/daddy.js +0 -2
- package/dist/classes/distro.js +2 -2
- package/dist/classes/{family → families}/archlinux.js +17 -17
- package/dist/classes/{family → families}/debian.js +33 -28
- package/dist/classes/{family → families}/fedora.js +2 -1
- package/dist/classes/families/mockup.js +100 -0
- package/dist/classes/{family → families}/suse.js +1 -1
- package/dist/classes/ovary.js +110 -86
- package/dist/classes/pacman.js +48 -38
- package/dist/classes/tools.js +0 -3
- package/dist/classes/utils.js +14 -5
- package/dist/commands/config.js +1 -1
- package/dist/commands/produce.js +24 -3
- package/dist/interfaces/i-addons.js +1 -0
- package/dist/interfaces/i-filters.js +3 -0
- package/dist/lib/dependencies.js +18 -18
- package/manpages/doc/man/eggs.1.gz +0 -0
- package/manpages/doc/man/eggs.html +11 -12
- package/package.json +1 -1
- package/scripts/_eggs +9 -8
- package/scripts/eggs.bash +3 -3
- package/conf/exclude.list +0 -211
- package/scripts/non-live-cmdline +0 -194
package/dist/commands/config.js
CHANGED
|
@@ -136,7 +136,7 @@ class Config extends core_1.Command {
|
|
|
136
136
|
}
|
|
137
137
|
if (i.configurationInstall) {
|
|
138
138
|
console.log('- creating/updating configuration');
|
|
139
|
-
console.log(' files: ' + chalk_1.default.yellow('/etc/penguins-eggs.d/eggs.yaml')
|
|
139
|
+
console.log(' files: ' + chalk_1.default.yellow('/etc/penguins-eggs.d/eggs.yaml'));
|
|
140
140
|
}
|
|
141
141
|
else if (i.configurationRefresh) {
|
|
142
142
|
console.log('- refreshing configuration for new machine');
|
package/dist/commands/produce.js
CHANGED
|
@@ -49,6 +49,26 @@ class Produce extends core_1.Command {
|
|
|
49
49
|
/**
|
|
50
50
|
* composizione dei flag
|
|
51
51
|
*/
|
|
52
|
+
// filters
|
|
53
|
+
const filters = {};
|
|
54
|
+
filters.custom = false;
|
|
55
|
+
filters.dev = false;
|
|
56
|
+
filters.homes = false;
|
|
57
|
+
filters.usr = false;
|
|
58
|
+
if (flags.filters) {
|
|
59
|
+
if (flags.filters.includes('custom')) {
|
|
60
|
+
filters.custom = true;
|
|
61
|
+
}
|
|
62
|
+
if (flags.filters.includes('dev')) {
|
|
63
|
+
filters.dev = true;
|
|
64
|
+
}
|
|
65
|
+
if (flags.filters.includes('homes')) {
|
|
66
|
+
filters.homes = true;
|
|
67
|
+
}
|
|
68
|
+
if (flags.filters.includes('usr')) {
|
|
69
|
+
filters.usr = true;
|
|
70
|
+
}
|
|
71
|
+
}
|
|
52
72
|
let prefix = '';
|
|
53
73
|
if (flags.prefix !== undefined) {
|
|
54
74
|
prefix = flags.prefix;
|
|
@@ -64,7 +84,7 @@ class Produce extends core_1.Command {
|
|
|
64
84
|
compression = compressors.max();
|
|
65
85
|
}
|
|
66
86
|
else if (flags.standard) {
|
|
67
|
-
compression = compressors.
|
|
87
|
+
compression = compressors.standard();
|
|
68
88
|
}
|
|
69
89
|
const release = flags.release;
|
|
70
90
|
const cryptedclone = flags.cryptedclone;
|
|
@@ -120,7 +140,7 @@ class Produce extends core_1.Command {
|
|
|
120
140
|
const ovary = new ovary_1.default();
|
|
121
141
|
utils_1.default.warning('Produce an egg...');
|
|
122
142
|
if (await ovary.fertilization(prefix, basename, theme, compression, !nointeractive)) {
|
|
123
|
-
await ovary.produce(clone, cryptedclone, scriptOnly, yolkRenew, release, myAddons, nointeractive, noicons, unsecure, verbose);
|
|
143
|
+
await ovary.produce(clone, cryptedclone, scriptOnly, yolkRenew, release, myAddons, filters, nointeractive, noicons, unsecure, verbose);
|
|
124
144
|
ovary.finished(scriptOnly);
|
|
125
145
|
}
|
|
126
146
|
}
|
|
@@ -134,6 +154,7 @@ Produce.flags = {
|
|
|
134
154
|
basename: core_1.Flags.string({ description: 'basename' }),
|
|
135
155
|
clone: core_1.Flags.boolean({ char: 'c', description: 'clone' }),
|
|
136
156
|
cryptedclone: core_1.Flags.boolean({ char: 'C', description: 'crypted clone' }),
|
|
157
|
+
filters: core_1.Flags.string({ multiple: true, description: 'filters can be used: custom. dev, homes, usr' }),
|
|
137
158
|
help: core_1.Flags.help({ char: 'h' }),
|
|
138
159
|
max: core_1.Flags.boolean({ char: 'm', description: 'max compression' }),
|
|
139
160
|
noicons: core_1.Flags.boolean({ char: 'N', description: 'no icons on desktop' }),
|
|
@@ -143,7 +164,7 @@ Produce.flags = {
|
|
|
143
164
|
script: core_1.Flags.boolean({ char: 's', description: 'script mode. Generate scripts to manage iso build' }),
|
|
144
165
|
standard: core_1.Flags.boolean({ char: 'f', description: 'standard compression' }),
|
|
145
166
|
theme: core_1.Flags.string({ description: 'theme for livecd, calamares branding and partitions' }),
|
|
146
|
-
unsecure: core_1.Flags.boolean({ char: 'u', description: '
|
|
167
|
+
unsecure: core_1.Flags.boolean({ char: 'u', description: '/root contents are included on live' }),
|
|
147
168
|
verbose: core_1.Flags.boolean({ char: 'v', description: 'verbose' }),
|
|
148
169
|
yolk: core_1.Flags.boolean({ char: 'y', description: 'force yolk renew' }),
|
|
149
170
|
};
|
package/dist/lib/dependencies.js
CHANGED
|
@@ -49,25 +49,25 @@ exports.array2spaced = array2spaced;
|
|
|
49
49
|
* sudo apt purge cryptsetup dosfstools dpkg-dev isolinux live-boot live-boot-initramfs-tools squashfs-tools syslinux-common coreutils xorriso
|
|
50
50
|
*/
|
|
51
51
|
exports.depCommon = [
|
|
52
|
-
'coreutils',
|
|
52
|
+
'coreutils', // whoami
|
|
53
53
|
'cryptsetup',
|
|
54
|
-
'curl',
|
|
55
|
-
'dosfstools',
|
|
56
|
-
'dpkg-dev',
|
|
57
|
-
'git',
|
|
58
|
-
'grub-efi-amd64-bin',
|
|
59
|
-
'isolinux',
|
|
60
|
-
'jq',
|
|
61
|
-
'live-boot-initramfs-tools',
|
|
62
|
-
'live-boot',
|
|
63
|
-
'lsb-release',
|
|
64
|
-
'lvm2',
|
|
65
|
-
'parted',
|
|
66
|
-
'pxelinux',
|
|
67
|
-
'rsync',
|
|
68
|
-
'squashfs-tools',
|
|
69
|
-
'sshfs',
|
|
70
|
-
'syslinux-common',
|
|
54
|
+
'curl', // wardrobe
|
|
55
|
+
'dosfstools', // eggs
|
|
56
|
+
'dpkg-dev', // yolk
|
|
57
|
+
'git', // wardrobe
|
|
58
|
+
'grub-efi-amd64-bin', // grub
|
|
59
|
+
'isolinux', // eggs
|
|
60
|
+
'jq', // mom restored
|
|
61
|
+
'live-boot-initramfs-tools', // eggs
|
|
62
|
+
'live-boot', // eggs
|
|
63
|
+
'lsb-release', // eggs
|
|
64
|
+
'lvm2', // pvdisplay in krill
|
|
65
|
+
'parted', // eggs
|
|
66
|
+
'pxelinux', // cuckoo
|
|
67
|
+
'rsync', // eggs
|
|
68
|
+
'squashfs-tools', // eggs
|
|
69
|
+
'sshfs', // eggs
|
|
70
|
+
'syslinux-common', // eggs
|
|
71
71
|
'xorriso', // eggs
|
|
72
72
|
];
|
|
73
73
|
/**
|
|
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 v9.6.
|
|
9
|
+
<h1>eggs(1) -- the reproductive system of penguins: eggs v9.6.23</h1>
|
|
10
10
|
<h1>SYNOPSIS</h1>
|
|
11
11
|
<p>Install Debian families (debian/devuan/ubuntu)</p>
|
|
12
|
-
<pre><code>$ sudo dpkg -i eggs_9.6.
|
|
12
|
+
<pre><code>$ sudo dpkg -i eggs_9.6.23_amd64.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/9.6.
|
|
33
|
+
penguins-eggs/9.6.23 linux-x64 node-v18.17.1
|
|
34
34
|
$ eggs --help [COMMAND]
|
|
35
35
|
|
|
36
36
|
USAGE
|
|
@@ -356,6 +356,7 @@ FLAGS
|
|
|
356
356
|
-y, --yolk force yolk renew
|
|
357
357
|
--addons=<value>... addons to be used: adapt, ichoice, pve, rsupport
|
|
358
358
|
--basename=<value> basename
|
|
359
|
+
--filters=<value>... filters to be used: custom. dev, homes, usr
|
|
359
360
|
--release release: max compression, remove penguins-eggs and calamares after installation
|
|
360
361
|
--theme=<value> theme for livecd, calamares branding and partitions
|
|
361
362
|
|
|
@@ -365,19 +366,17 @@ DESCRIPTION
|
|
|
365
366
|
EXAMPLES
|
|
366
367
|
sudo eggs produce
|
|
367
368
|
|
|
368
|
-
sudo eggs produce --standard
|
|
369
|
-
|
|
370
369
|
sudo eggs produce --max
|
|
371
370
|
|
|
372
|
-
sudo eggs produce --max --basename=colibri
|
|
373
|
-
|
|
374
|
-
sudo eggs produce --cryptedclone
|
|
375
|
-
|
|
376
371
|
sudo eggs produce --clone
|
|
377
|
-
|
|
372
|
+
|
|
373
|
+
sudo eggs produce --clone --max
|
|
374
|
+
|
|
378
375
|
sudo eggs produce --basename=colibri
|
|
379
376
|
|
|
380
|
-
sudo eggs produce --
|
|
377
|
+
sudo eggs produce --filters custom homes usr
|
|
378
|
+
|
|
379
|
+
sudo eggs produce --theme /path/to/theme --addons adapt
|
|
381
380
|
</code></pre>
|
|
382
381
|
<h2><code>eggs status</code></h2>
|
|
383
382
|
<p>informations about eggs status</p>
|
|
@@ -646,7 +645,7 @@ EXAMPLES
|
|
|
646
645
|
<pre><code> /etc/penguins-eggs.d
|
|
647
646
|
all eggs configurations are here
|
|
648
647
|
|
|
649
|
-
/
|
|
648
|
+
/etc/penguins-eggs.d/exclude.list
|
|
650
649
|
exclude.list rsync
|
|
651
650
|
|
|
652
651
|
/usr/lib/penguins-eggs (deb package)
|
package/package.json
CHANGED
package/scripts/_eggs
CHANGED
|
@@ -33,9 +33,9 @@ _eggs () {
|
|
|
33
33
|
"wardrobe\:list:list costumes and accessoires in wardrobe"
|
|
34
34
|
"wardrobe\:show:show costumes/accessories in wardrobe"
|
|
35
35
|
"wardrobe\:wear:wear costume/accessories from wardrobe"
|
|
36
|
-
"autocomplete:display autocomplete installation instructions"
|
|
37
|
-
"help:Display help for <%= config.bin %>."
|
|
38
36
|
"version:"
|
|
37
|
+
"help:Display help for <%= config.bin %>."
|
|
38
|
+
"autocomplete:display autocomplete installation instructions"
|
|
39
39
|
)
|
|
40
40
|
|
|
41
41
|
_set_flags () {
|
|
@@ -169,6 +169,7 @@ produce)
|
|
|
169
169
|
"--basename=-[basename]:"
|
|
170
170
|
"--clone[clone]"
|
|
171
171
|
"--cryptedclone[crypted clone]"
|
|
172
|
+
"--filters=-[filters can be used: custom. dev, homes, usr]:"
|
|
172
173
|
"--help[Show CLI help.]"
|
|
173
174
|
"--max[max compression]"
|
|
174
175
|
"--noicons[no icons on desktop]"
|
|
@@ -178,7 +179,7 @@ produce)
|
|
|
178
179
|
"--script[script mode. Generate scripts to manage iso build]"
|
|
179
180
|
"--standard[standard compression]"
|
|
180
181
|
"--theme=-[theme for livecd, calamares branding and partitions]:"
|
|
181
|
-
"--unsecure[
|
|
182
|
+
"--unsecure[/root contents are included on live]"
|
|
182
183
|
"--verbose[verbose]"
|
|
183
184
|
"--yolk[force yolk renew]"
|
|
184
185
|
)
|
|
@@ -292,9 +293,10 @@ wardrobe:wear)
|
|
|
292
293
|
)
|
|
293
294
|
;;
|
|
294
295
|
|
|
295
|
-
|
|
296
|
+
version)
|
|
296
297
|
_command_flags=(
|
|
297
|
-
"--
|
|
298
|
+
"--json[Format output as json.]"
|
|
299
|
+
"--verbose[Additionally shows the architecture, node version, operating system, and versions of plugins that the CLI is using.]"
|
|
298
300
|
)
|
|
299
301
|
;;
|
|
300
302
|
|
|
@@ -304,10 +306,9 @@ help)
|
|
|
304
306
|
)
|
|
305
307
|
;;
|
|
306
308
|
|
|
307
|
-
|
|
309
|
+
autocomplete)
|
|
308
310
|
_command_flags=(
|
|
309
|
-
"--
|
|
310
|
-
"--verbose[Additionally shows the architecture, node version, operating system, and versions of plugins that the CLI is using.]"
|
|
311
|
+
"--refresh-cache[Refresh cache (ignores displaying instructions)]"
|
|
311
312
|
)
|
|
312
313
|
;;
|
|
313
314
|
|
package/scripts/eggs.bash
CHANGED
|
@@ -23,7 +23,7 @@ install --crypted --custom --domain --halt --help --ip --nointeractive --none --
|
|
|
23
23
|
krill --crypted --custom --domain --halt --help --ip --nointeractive --none --pve --random --small --suspend --unattended --verbose
|
|
24
24
|
kill --help --nointeractive --isos --verbose
|
|
25
25
|
mom --help
|
|
26
|
-
produce --addons --basename --clone --cryptedclone --help --max --noicons --nointeractive --prefix --release --script --standard --theme --unsecure --verbose --yolk
|
|
26
|
+
produce --addons --basename --clone --cryptedclone --filters --help --max --noicons --nointeractive --prefix --release --script --standard --theme --unsecure --verbose --yolk
|
|
27
27
|
status --help --verbose
|
|
28
28
|
syncfrom --delete --file --help --rootdir --verbose
|
|
29
29
|
syncto --delete --file --help --verbose
|
|
@@ -37,9 +37,9 @@ wardrobe:get --help --verbose
|
|
|
37
37
|
wardrobe:list --help --distro --verbose
|
|
38
38
|
wardrobe:show --help --json --verbose --wardrobe
|
|
39
39
|
wardrobe:wear --help --no_accessories --no_firmwares --verbose --wardrobe
|
|
40
|
-
autocomplete --refresh-cache
|
|
41
|
-
help --nested-commands
|
|
42
40
|
version --json --verbose
|
|
41
|
+
help --nested-commands
|
|
42
|
+
autocomplete --refresh-cache
|
|
43
43
|
"
|
|
44
44
|
|
|
45
45
|
function __trim_colon_commands()
|
package/conf/exclude.list
DELETED
|
@@ -1,211 +0,0 @@
|
|
|
1
|
-
# Based on: https://git.devuan.org/devuan/refractasnapshot-base/src/branch/master/snapshot_exclude.list
|
|
2
|
-
#
|
|
3
|
-
# Location: /usr/local/share/penguins-eggs/exclude.list
|
|
4
|
-
#
|
|
5
|
-
# Authors: fsmithred (original), Piero Proietti, Tim Wallace, Hosein Seilany
|
|
6
|
-
#
|
|
7
|
-
# NOTE: all is alfabetic sorted using code->command palette->sortes lines ascending
|
|
8
|
-
######################################################################################################
|
|
9
|
-
|
|
10
|
-
# SYSTEM: Exclude some system files - These are required, and you probably shouldn't change them.
|
|
11
|
-
# They are temporary files only created on bootup - otherwise would waste space on a clone
|
|
12
|
-
cdrom/*
|
|
13
|
-
dev/*
|
|
14
|
-
media/*
|
|
15
|
-
mnt/*
|
|
16
|
-
proc/*
|
|
17
|
-
swapfile
|
|
18
|
-
sys/*
|
|
19
|
-
tmp/*
|
|
20
|
-
|
|
21
|
-
######################################################################################################
|
|
22
|
-
# LIVE STUFFS: files depending on live
|
|
23
|
-
etc/udev/rules.d/70-persistent-cd.rules
|
|
24
|
-
etc/udev/rules.d/70-persistent-net.rules
|
|
25
|
-
lib/live/*
|
|
26
|
-
live
|
|
27
|
-
persistence.conf
|
|
28
|
-
var/lib/live/config/*
|
|
29
|
-
|
|
30
|
-
######################################################################################################
|
|
31
|
-
# HARDWARE DEPENDAND FILES: created/updated during restoration of clone by calamares
|
|
32
|
-
boot/grub/device.map
|
|
33
|
-
boot/grub/grub.cfg
|
|
34
|
-
boot/grub/menu.lst
|
|
35
|
-
etc/blkid.tab
|
|
36
|
-
etc/blkid.tab.old
|
|
37
|
-
etc/fstab
|
|
38
|
-
etc/fstab.d/*
|
|
39
|
-
etc/mtab
|
|
40
|
-
|
|
41
|
-
######################################################################################################
|
|
42
|
-
# CACHES: that tend to be very large and unneeded - only for Arch and Debian based Linuxes
|
|
43
|
-
|
|
44
|
-
# Arch family
|
|
45
|
-
home/*/.local/share/yay
|
|
46
|
-
# NOT necessary: under var/cache/ we remove all
|
|
47
|
-
#var/cache/pacman/pkg
|
|
48
|
-
#var/cache/private/yay
|
|
49
|
-
|
|
50
|
-
# Debian family
|
|
51
|
-
# NOT necessary: under var/cache/ we remove all
|
|
52
|
-
#var/cache/apt/apt-file/*
|
|
53
|
-
#var/cache/apt/archives/*.deb
|
|
54
|
-
#var/cache/apt/pkgcache.bin
|
|
55
|
-
#var/cache/apt/srcpkgcache.bin
|
|
56
|
-
#var/cache/debconf/*~old
|
|
57
|
-
|
|
58
|
-
######################################################################################################
|
|
59
|
-
# MISC: miscellanea
|
|
60
|
-
.snapshots/*
|
|
61
|
-
etc/apt/*~
|
|
62
|
-
etc/crypttab
|
|
63
|
-
etc/initramfs-tools/conf.d/cryptroot
|
|
64
|
-
etc/initramfs-tools/conf.d/resume
|
|
65
|
-
etc/popularity-contest.conf
|
|
66
|
-
etc/skel/.config/Code
|
|
67
|
-
etc/skel/.local/share/baloo/*
|
|
68
|
-
etc/skel/.ZAP/*
|
|
69
|
-
lost+found
|
|
70
|
-
swap/*
|
|
71
|
-
swapfile
|
|
72
|
-
usr/bin/x86_64-w64-mingw32-cpp-win32
|
|
73
|
-
usr/bin/x86_64-w64-mingw32-gcc-12-win32
|
|
74
|
-
usr/bin/x86_64-w64-mingw32-gcc-ar-win32
|
|
75
|
-
usr/bin/x86_64-w64-mingw32-gcc-nm-win32
|
|
76
|
-
usr/bin/x86_64-w64-mingw32-gcc-ranlib-win32
|
|
77
|
-
usr/bin/x86_64-w64-mingw32-gcc-win32
|
|
78
|
-
usr/bin/x86_64-w64-mingw32-gcov-dump-win32
|
|
79
|
-
usr/bin/x86_64-w64-mingw32-gcov-tool-win32
|
|
80
|
-
usr/bin/x86_64-w64-mingw32-gcov-win32
|
|
81
|
-
usr/bin/x86_64-w64-mingw32-lto-dump-win32
|
|
82
|
-
usr/i686-w64-mingw32/*
|
|
83
|
-
usr/include/gtkmm-3.0/*
|
|
84
|
-
usr/lib/gcc/i686-w64-mingw32/*
|
|
85
|
-
usr/lib/gcc/x86_64-w64-mingw32/*
|
|
86
|
-
usr/lib/i386-linux-gnu/*
|
|
87
|
-
usr/lib/i386-linux-gnu/libLLVM-12.so
|
|
88
|
-
usr/lib/i386-linux-gnu/libLLVM-12.so.1
|
|
89
|
-
usr/lib/llvm-11/*
|
|
90
|
-
usr/lib/llvm-9/*
|
|
91
|
-
usr/lib/mono/*
|
|
92
|
-
usr/lib/snapd/*
|
|
93
|
-
usr/lib/x86_64-linux-gnu/libLLVM-10.so
|
|
94
|
-
usr/lib/x86_64-linux-gnu/libLLVM-10.so.1
|
|
95
|
-
usr/lib/x86_64-linux-gnu/libLLVM-11.so
|
|
96
|
-
usr/lib/x86_64-linux-gnu/libLLVM-11.so.1
|
|
97
|
-
usr/lib/x86_64-linux-gnu/libLLVM-12.so
|
|
98
|
-
usr/lib/x86_64-linux-gnu/libLLVM-12.so.1
|
|
99
|
-
usr/lib/x86_64-linux-gnu/libLLVM-14.so
|
|
100
|
-
usr/lib/x86_64-linux-gnu/libLLVM-14.so.1
|
|
101
|
-
usr/lib/x86_64-linux-gnu/libLLVM-9.so
|
|
102
|
-
usr/lib/x86_64-linux-gnu/libLLVM-9.so.1
|
|
103
|
-
usr/lib/x86_64-linux-gnu/openblas-pthread/*
|
|
104
|
-
usr/share/dict/*
|
|
105
|
-
usr/share/doc/*
|
|
106
|
-
usr/share/eclipse/*
|
|
107
|
-
usr/share/gimp/2.0/help/en/images/*
|
|
108
|
-
usr/share/gtk-doc/html/*
|
|
109
|
-
usr/share/krita/*
|
|
110
|
-
usr/share/texmf/*
|
|
111
|
-
usr/share/xemacs21/*
|
|
112
|
-
usr/x86_64-w64-mingw32/*
|
|
113
|
-
var/backups/*
|
|
114
|
-
var/cache/*
|
|
115
|
-
var/lib/aide/*
|
|
116
|
-
var/lib/apt/*~
|
|
117
|
-
var/lib/apt/cdroms.list
|
|
118
|
-
var/lib/apt/lists/*
|
|
119
|
-
var/lib/aptitude/*.old
|
|
120
|
-
var/lib/cache
|
|
121
|
-
var/lib/dbus/machine-id
|
|
122
|
-
var/lib/dhcp/*
|
|
123
|
-
var/lib/dkms/wireguard/*
|
|
124
|
-
var/lib/dpkg/*~old
|
|
125
|
-
var/lib/gems/2.7.0/cache/*
|
|
126
|
-
var/lib/snapd/*
|
|
127
|
-
var/log/*
|
|
128
|
-
var/log/kern.log
|
|
129
|
-
var/log/lastlog
|
|
130
|
-
var/log/syslog
|
|
131
|
-
var/spool/*
|
|
132
|
-
var/tmp/*
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
######################################################################################################
|
|
136
|
-
# CUSTOM: the nest - usually /home/eggs - is automatically excluded!
|
|
137
|
-
blissos/data.img
|
|
138
|
-
|
|
139
|
-
# uncomment to test --clone when is too big
|
|
140
|
-
# home/artisan/*
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
######################################################################################################
|
|
144
|
-
# You can exclude all home contents, just removing comment in next line
|
|
145
|
-
# home/*/*
|
|
146
|
-
|
|
147
|
-
home/*/.adobe
|
|
148
|
-
home/*/.aptitude
|
|
149
|
-
home/*/.bash_history
|
|
150
|
-
home/*/.cache
|
|
151
|
-
home/*/.config/BraveSoftware/Brave-Browser/*
|
|
152
|
-
home/*/.config/chromium
|
|
153
|
-
home/*/.config/Code
|
|
154
|
-
home/*/.config/discord
|
|
155
|
-
home/*/.config/filezilla
|
|
156
|
-
home/*/.config/GIMP/
|
|
157
|
-
home/*/.config/hexchat
|
|
158
|
-
home/*/.config/VSCodium
|
|
159
|
-
home/*/.dbus
|
|
160
|
-
home/*/.evolution/cache/
|
|
161
|
-
home/*/.gconf/apps/gnome-settings/gnome-search-tool/%gconf.xml
|
|
162
|
-
home/*/.gimp-2.4
|
|
163
|
-
home/*/.gimp-2.6
|
|
164
|
-
home/*/.gimp-2.8
|
|
165
|
-
home/*/.gksu*
|
|
166
|
-
home/*/.gnome2/gedit-metadata.xml
|
|
167
|
-
home/*/.gnupg
|
|
168
|
-
home/*/.gvfs
|
|
169
|
-
home/*/.ICEauthority
|
|
170
|
-
home/*/.kde/cache*
|
|
171
|
-
home/*/.kde/share/apps/RecentDocuments/*.desktop
|
|
172
|
-
home/*/.kde4/share/apps/RecentDocuments/*.desktop
|
|
173
|
-
home/*/.lesshst
|
|
174
|
-
home/*/.libreoffice/3-suse/user/registrymodifications.xcu
|
|
175
|
-
home/*/.libreoffice/3/user/registrymodifications
|
|
176
|
-
home/*/.local/share/DBeaverData/*
|
|
177
|
-
home/*/.local/share/Google/*
|
|
178
|
-
home/*/.local/share/jupyter/*
|
|
179
|
-
home/*/.local/share/QtProject/*
|
|
180
|
-
home/*/.local/share/RecentDocuments/*.desktop
|
|
181
|
-
home/*/.local/share/recently-used.xbel
|
|
182
|
-
home/*/.local/share/Trash/*
|
|
183
|
-
home/*/.log
|
|
184
|
-
home/*/.macromedia
|
|
185
|
-
home/*/.maltego/v4.2.17/var/cache/*
|
|
186
|
-
home/*/.mozilla/*
|
|
187
|
-
home/*/.nano_history
|
|
188
|
-
home/*/.nautilus/metafiles/*
|
|
189
|
-
home/*/.pulse*
|
|
190
|
-
home/*/.recently-used
|
|
191
|
-
home/*/.recently-used.xbel
|
|
192
|
-
home/*/.ssh
|
|
193
|
-
home/*/.thumbnails/fail/*
|
|
194
|
-
home/*/.thumbnails/large/*
|
|
195
|
-
home/*/.thumbnails/normal/*
|
|
196
|
-
home/*/.Trash*
|
|
197
|
-
home/*/.var/app/org.filezillaproject.Filezilla/config/filezilla
|
|
198
|
-
home/*/.var/app/org.mozilla.firefox/cache/mozilla
|
|
199
|
-
home/*/.var/app/org.mozilla.Thunderbird/cache/thunderbird/
|
|
200
|
-
home/*/.vbox*
|
|
201
|
-
home/*/.viminfo
|
|
202
|
-
home/*/.VirtualBox
|
|
203
|
-
home/*/.wine
|
|
204
|
-
home/*/.Xauthority
|
|
205
|
-
home/*/.xchat2/*
|
|
206
|
-
home/*/.xsession-errors
|
|
207
|
-
home/*/.ZAP/*
|
|
208
|
-
home/*/env01/*
|
|
209
|
-
home/*/snap/filezilla/22/.config/filezilla
|
|
210
|
-
home/*/snap/firefox/common/.cache/mozilla
|
|
211
|
-
home/*/VirtualBox
|
package/scripts/non-live-cmdline
DELETED
|
@@ -1,194 +0,0 @@
|
|
|
1
|
-
#!/bin/sh
|
|
2
|
-
|
|
3
|
-
PROC_CMDLINE=$(cat /proc/cmdline)
|
|
4
|
-
CONF_CMDLINE=$(grep ^CONFIG_CMDLINE= /boot/config-$(uname -r) 2>/dev/null | cut -d\" -f2 | tail -1)
|
|
5
|
-
|
|
6
|
-
CMD_LINE=""
|
|
7
|
-
for param in $PROC_CMDLINE; do
|
|
8
|
-
x=x
|
|
9
|
-
for conf in $CONF_CMDLINE; do
|
|
10
|
-
[ "$conf" = "$param" ] && x="" && break
|
|
11
|
-
done
|
|
12
|
-
[ -n "$x" ] && CMD_LINE="$CMD_LINE $param"
|
|
13
|
-
done
|
|
14
|
-
|
|
15
|
-
for param in $CMD_LINE; do
|
|
16
|
-
case $param in
|
|
17
|
-
|
|
18
|
-
menus) ;;
|
|
19
|
-
menus=*) ;;
|
|
20
|
-
old-conf) ;;
|
|
21
|
-
new-conf) ;;
|
|
22
|
-
splash) ;;
|
|
23
|
-
splash=*) ;;
|
|
24
|
-
poweroff) ;;
|
|
25
|
-
reboot) ;;
|
|
26
|
-
bootdir=*|bdir=*) ;;
|
|
27
|
-
bootlabel=*|blabel=*|blab=*) ;;
|
|
28
|
-
bootuuid=*|buuid=*) ;;
|
|
29
|
-
bootdev=*|bdev=*) ;;
|
|
30
|
-
|
|
31
|
-
try=*|retry=*) ;;
|
|
32
|
-
|
|
33
|
-
persistdir=*|pdir=*) ;;
|
|
34
|
-
|
|
35
|
-
persistlabel=*|plabel=*|plab=*) ;;
|
|
36
|
-
persistuuid=*|puuid=*) ;;
|
|
37
|
-
persistdev=*|pdev=*) ;;
|
|
38
|
-
|
|
39
|
-
persistretry=*|pretry=*|ptry=*) ;;
|
|
40
|
-
|
|
41
|
-
dbv=*) ;;
|
|
42
|
-
fneed=*) ;;
|
|
43
|
-
fforce) ;;
|
|
44
|
-
frugal) ;;
|
|
45
|
-
frugal=*) ;;
|
|
46
|
-
flab=*) ;;
|
|
47
|
-
fdev=*) ;;
|
|
48
|
-
fuuid=*) ;;
|
|
49
|
-
|
|
50
|
-
iso=*|fromiso=*) ;;
|
|
51
|
-
iso|fromiso) ;;
|
|
52
|
-
|
|
53
|
-
from=*) ;;
|
|
54
|
-
|
|
55
|
-
persist=*|p=*) ;;
|
|
56
|
-
persist) ;;
|
|
57
|
-
|
|
58
|
-
sqext=*) ;;
|
|
59
|
-
sqname=*) ;;
|
|
60
|
-
sq=*) ;;
|
|
61
|
-
|
|
62
|
-
verbose=*|verb=*|v=*) ;;
|
|
63
|
-
bp=*) ;;
|
|
64
|
-
pk=*) ;;
|
|
65
|
-
|
|
66
|
-
check|md5|checkmd5) ;;
|
|
67
|
-
hico|highcolor) ;;
|
|
68
|
-
loco|lowcolor) ;;
|
|
69
|
-
noco|nocolor) ;;
|
|
70
|
-
|
|
71
|
-
noxtra) ;;
|
|
72
|
-
doxtra) ;;
|
|
73
|
-
|
|
74
|
-
db+) ;;
|
|
75
|
-
db++) ;;
|
|
76
|
-
|
|
77
|
-
fancyprompt|fprompt) ;;
|
|
78
|
-
autologin|alogin) ;;
|
|
79
|
-
|
|
80
|
-
toram|toram=*) ;;
|
|
81
|
-
|
|
82
|
-
noremaster) ;;
|
|
83
|
-
rollback) ;;
|
|
84
|
-
lang=*) ;;
|
|
85
|
-
|
|
86
|
-
noclear) ;;
|
|
87
|
-
gfxsave|gfxsave=*) ;;
|
|
88
|
-
|
|
89
|
-
checkfs) ;;
|
|
90
|
-
nocheckfs) ;;
|
|
91
|
-
|
|
92
|
-
failsafe) ;;
|
|
93
|
-
load=*) ;;
|
|
94
|
-
bl=*|blacklist=*) ;;
|
|
95
|
-
|
|
96
|
-
coldplug) ;;
|
|
97
|
-
hotplug) ;;
|
|
98
|
-
traceload) ;;
|
|
99
|
-
autoload|aload) ;;
|
|
100
|
-
|
|
101
|
-
init=*) ;;
|
|
102
|
-
|
|
103
|
-
nousb2|noehci) ;;
|
|
104
|
-
|
|
105
|
-
noerrlog) ;;
|
|
106
|
-
errtest) ;;
|
|
107
|
-
errtest=*) ;;
|
|
108
|
-
noerr=*) ;;
|
|
109
|
-
|
|
110
|
-
vtblank=*) ;;
|
|
111
|
-
|
|
112
|
-
livedir=*|ldir=*) ;;
|
|
113
|
-
pw|passwd|pw=*|passwd=*) ;;
|
|
114
|
-
private|private=*) ;;
|
|
115
|
-
bootchart) ;;
|
|
116
|
-
noplink) ;;
|
|
117
|
-
plink) ;;
|
|
118
|
-
|
|
119
|
-
disable=*|nosysv=*) ;;
|
|
120
|
-
disable_srv=*|disable_service=*) ;;
|
|
121
|
-
lean|mean|Xtralean|nodbus) ;;
|
|
122
|
-
initcall_debug|printk.time=y) ;;
|
|
123
|
-
|
|
124
|
-
# Convenience short cuts from our menus
|
|
125
|
-
persist_all) ;;
|
|
126
|
-
persist_root) ;;
|
|
127
|
-
persist_static) ;;
|
|
128
|
-
p_static_root) ;;
|
|
129
|
-
persist_home) ;;
|
|
130
|
-
frugal_persist) ;;
|
|
131
|
-
frugal_root) ;;
|
|
132
|
-
frugal_static) ;;
|
|
133
|
-
f_static_root) ;;
|
|
134
|
-
frugal_home) ;;
|
|
135
|
-
frugal_only) ;;
|
|
136
|
-
nostore) ;;
|
|
137
|
-
dostore) ;;
|
|
138
|
-
disablestore) ;;
|
|
139
|
-
fatuid=*|fatgid=*) ;;
|
|
140
|
-
live_swap=*) ;;
|
|
141
|
-
mk_swap_file) ;;
|
|
142
|
-
mk_swap_file=*) ;;
|
|
143
|
-
notmptmp) ;;
|
|
144
|
-
nomicrocode) ;;
|
|
145
|
-
nosavelogs) ;;
|
|
146
|
-
tty1on) ;;
|
|
147
|
-
splasht) ;;
|
|
148
|
-
splasht=*) ;;
|
|
149
|
-
st_tty=*) ;;
|
|
150
|
-
vcard=*) ;;
|
|
151
|
-
|
|
152
|
-
# Our Live params
|
|
153
|
-
hwclock=utc|hwclock=local|xorg|xorg=*|noearlyvid|earlyvid) ;;
|
|
154
|
-
amnt|amnt=*|automount|automount=*|confont=*|conkeys=*);;
|
|
155
|
-
desktop=*|dpi=*|fstab=*|hostname=*|kbd=*|kbopt=*|kbvar=*);;
|
|
156
|
-
lang=*|mirror=*|mount=*|noloadkeys|noprompt);;
|
|
157
|
-
nosplash|password|password=*|prompt|pw|pw=*|tz=*|ubp=*|ushow=*);;
|
|
158
|
-
uverb=*|xres=*|noxorg);;
|
|
159
|
-
desktheme=*) ;;
|
|
160
|
-
nosavestate|savestate|dbsavestate) ;;
|
|
161
|
-
deskdelay=*) ;;
|
|
162
|
-
udpi=*|sdpi=*) ;;
|
|
163
|
-
fontsize=*) ;;
|
|
164
|
-
norepo|norepo=*) ;;
|
|
165
|
-
conwidth=*);;
|
|
166
|
-
noautomount) ;;
|
|
167
|
-
vga=ask+save) ;;
|
|
168
|
-
|
|
169
|
-
skylakeflicker) ;;
|
|
170
|
-
i915powersave) ;;
|
|
171
|
-
|
|
172
|
-
aufs|overlayfs) ;;
|
|
173
|
-
wicd|nowicd) ;;
|
|
174
|
-
|
|
175
|
-
nomicrocode) ;;
|
|
176
|
-
live_swap=off) ;;
|
|
177
|
-
live_swap=force) ;;
|
|
178
|
-
live_swap=all-off) ;;
|
|
179
|
-
mk_swap_file=*) ;;
|
|
180
|
-
|
|
181
|
-
# Added by Grub
|
|
182
|
-
BOOT_IMAGE=*) ;;
|
|
183
|
-
|
|
184
|
-
# Sometimes added with grub loop mounts
|
|
185
|
-
*root=*) ;;
|
|
186
|
-
|
|
187
|
-
# Added by live-Grub menu
|
|
188
|
-
grubsave) ;;
|
|
189
|
-
kernel=*) ;;
|
|
190
|
-
extra=*) ;;
|
|
191
|
-
|
|
192
|
-
*) printf "%s " "$param"
|
|
193
|
-
esac
|
|
194
|
-
done
|