Merge branch 'kali-purple' into 'master'
Add kali purple variant See merge request kalilinux/build-scripts/live-build-config!29merge-requests/18/merge
commit
735f0fe1c6
@ -0,0 +1,19 @@
|
||||
# Installer for Kali Purple
|
||||
|
||||
# Metapackages
|
||||
# You can customize the set of Kali metapackages (groups of tools) available
|
||||
# in the installer ISO.
|
||||
# For the complete list see: https://tools.kali.org/kali-metapackages
|
||||
kali-system-core
|
||||
|
||||
# Tools
|
||||
kali-tools-detect
|
||||
kali-tools-identify
|
||||
kali-tools-protect
|
||||
kali-tools-recover
|
||||
kali-tools-respond
|
||||
|
||||
# Graphical desktops
|
||||
kali-desktop-xfce
|
||||
kali-desktop-gnome
|
||||
kali-desktop-kde
|
@ -0,0 +1,3 @@
|
||||
# Exclude big packages that are Recommended by defensive tools metapackages.
|
||||
# Keep this list in sync with kali-meta/debian/control.
|
||||
exploitdb-papers
|
@ -0,0 +1,18 @@
|
||||
#!/bin/sh
|
||||
|
||||
set -eu
|
||||
|
||||
configure_elastic() {
|
||||
# Install the elastic archive keyring
|
||||
wget -q -O- https://artifacts.elastic.co/GPG-KEY-elasticsearch \
|
||||
> /etc/apt/keyrings/elastic-keyring.asc
|
||||
|
||||
# Enable the repository
|
||||
cat >/etc/apt/sources.list.d/elastic.list <<EOF
|
||||
deb [signed-by=/etc/apt/keyrings/elastic-keyring.asc] https://artifacts.elastic.co/packages/8.x/apt stable main
|
||||
EOF
|
||||
|
||||
apt-get update
|
||||
}
|
||||
|
||||
configure_elastic
|
@ -0,0 +1,4 @@
|
||||
# Do use a network mirror, but do not upgrade, so that
|
||||
# only missing packages are fetched.
|
||||
d-i apt-setup/use_mirror boolean true
|
||||
d-i pkgsel/upgrade select none
|
Loading…
Reference in New Issue