penguins-eggs 9.2.9 → 9.3.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/.oclif.manifest.json +1 -1
- package/README.md +48 -21
- package/conf/distros/bionic/README.md +1 -1
- package/conf/distros/bionic/calamares/settings.yml +1 -1
- package/conf/distros/buster/calamares/calamares-modules/dpkg-unsafe-io/module.yml +1 -1
- package/conf/distros/buster/calamares/calamares-modules/dpkg-unsafe-io-undo/module.yml +1 -1
- package/conf/distros/buster/calamares/calamares-modules/sources-yolk/sources-yolk.sh +56 -79
- package/conf/distros/buster/calamares/calamares-modules/{sources-yolk-unmount → sources-yolk-undo}/module.yml +2 -2
- package/conf/distros/buster/calamares/modules/packages.yml +2 -4
- package/conf/distros/buster/calamares/settings.yml +3 -3
- package/conf/distros/focal/calamares/settings.yml +1 -1
- package/conf/distros/jessie/krill/krill-modules/sources-yolk-unmount/module.yml +2 -2
- package/conf/distros/jessie/krill/settings.yml +1 -1
- package/dist/classes/incubation/distros/bionic.js +1 -1
- package/dist/classes/incubation/distros/buster.js +2 -2
- package/dist/classes/incubation/distros/focal.js +1 -1
- package/dist/classes/incubation/distros/jessie.js +1 -1
- package/dist/classes/incubation/fisherman-helper/packages.js +24 -31
- package/dist/classes/incubation/fisherman.js +8 -5
- package/dist/classes/pacman.js +5 -5
- package/dist/classes/pxe.js +7 -7
- package/dist/classes/xdg.js +7 -4
- package/dist/commands/tools/ppa.js +82 -0
- package/dist/krill/krill-sequence.js +26 -6
- package/dist/krill/modules/packages.js +40 -34
- package/dist/lib/dependencies.js +1 -0
- package/package.json +2 -2
- package/conf/distros/buster/calamares/calamares-modules/sources-yolk/sources-yolk.working.sh +0 -75
- package/scripts/netgrub.sh +0 -39
package/scripts/netgrub.sh
DELETED
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
#!/bin/sh
|
|
2
|
-
|
|
3
|
-
set -e
|
|
4
|
-
|
|
5
|
-
# Sets up a tftp server to netboot x86_64 systems over UEFI.
|
|
6
|
-
# Works on Ubuntu 13.10 and later.
|
|
7
|
-
|
|
8
|
-
# change to the root of your tftp server
|
|
9
|
-
TFTPROOT=/var/lib/tftpboot
|
|
10
|
-
|
|
11
|
-
# needed for unpacking the shim-signed source package
|
|
12
|
-
apt-get install dpkg-dev
|
|
13
|
-
|
|
14
|
-
tmpdir=$(mktemp -d)
|
|
15
|
-
|
|
16
|
-
cleanup () {
|
|
17
|
-
if [ -n "$tmpdir" ]; then
|
|
18
|
-
rm -rf "$tmpdir"
|
|
19
|
-
fi
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
trap cleanup EXIT HUP INT QUIT PIPE TERM
|
|
23
|
-
|
|
24
|
-
cd "$tmpdir"
|
|
25
|
-
apt-get source shim-signed
|
|
26
|
-
cp shim-signed-*/shim.efi.signed "$TFTPROOT"/bootx64.efi
|
|
27
|
-
|
|
28
|
-
cd "$TFTPROOT"
|
|
29
|
-
|
|
30
|
-
wget -O grubx64.efi http://archive.ubuntu.com/ubuntu/dists/saucy/main/uefi/grub2-amd64/current/grubnetx64.efi.signed
|
|
31
|
-
|
|
32
|
-
# Unfortunately the unicode font is assembled by the grub2 package at
|
|
33
|
-
# build-time, so we can't grab it from the source; and we have no persistent
|
|
34
|
-
# URL for it since that changes with each version number; so try to install
|
|
35
|
-
# it (which should be a no-op on x86 anyway) and copy the contents.
|
|
36
|
-
apt-get install grub-common
|
|
37
|
-
mkdir -p grub/fonts
|
|
38
|
-
cp /usr/share/grub/unicode.pf2 grub/fonts
|
|
39
|
-
|