mirror of
https://github.com/kforney/pentest-distro-builder.git
synced 2024-11-21 17:40:57 -07:00
Delete unnecessary files.
Former-commit-id: eec59c53f4b6df48974c302284d31d5304a7d9e5 Former-commit-id: 0472fba8c0ce40feb159e6e0f93161ba031d5a19
This commit is contained in:
parent
20e48af260
commit
cace404a81
2 changed files with 0 additions and 87 deletions
|
@ -1,8 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
cat >>binary/isolinux/install.cfg < label install
|
|
||||||
menu label ^Unattended Install
|
|
||||||
menu default
|
|
||||||
linux /install/vmlinuz
|
|
||||||
initrd /install/initrd.gz
|
|
||||||
append vga=788 — quiet file=/cdrom/install/preseed.cfg locale=en_US keymap=us hostname=kali domain=local.lan
|
|
||||||
END
|
|
|
@ -1,79 +0,0 @@
|
||||||
d-i debian-installer/locale string en_US.UTF-8
|
|
||||||
d-i console-keymaps-at/keymap select us
|
|
||||||
d-i mirror/country string enter information manually
|
|
||||||
d-i mirror/http/hostname string http.kali.org
|
|
||||||
d-i mirror/http/directory string /kali
|
|
||||||
d-i keyboard-configuration/xkb-keymap select us
|
|
||||||
d-i mirror/http/proxy string
|
|
||||||
d-i mirror/suite string kali-rolling
|
|
||||||
d-i mirror/codename string kali-rolling
|
|
||||||
|
|
||||||
d-i clock-setup/utc boolean true
|
|
||||||
d-i time/zone string US/Mountain
|
|
||||||
|
|
||||||
# Disable security, volatile and backports
|
|
||||||
d-i apt-setup/services-select multiselect
|
|
||||||
|
|
||||||
# Enable contrib and non-free
|
|
||||||
d-i apt-setup/non-free boolean true
|
|
||||||
d-i apt-setup/contrib boolean true
|
|
||||||
|
|
||||||
# Disable source repositories too
|
|
||||||
d-i apt-setup/enable-source-repositories boolean false
|
|
||||||
|
|
||||||
# Partitioning
|
|
||||||
d-i partman-auto/method string regular
|
|
||||||
d-i partman-lvm/device_remove_lvm boolean true
|
|
||||||
d-i partman-md/device_remove_md boolean true
|
|
||||||
d-i partman-lvm/confirm boolean true
|
|
||||||
d-i partman-auto/choose_recipe select atomic
|
|
||||||
d-i partman-auto/disk string /dev/sda
|
|
||||||
d-i partman/confirm_write_new_label boolean true
|
|
||||||
d-i partman/choose_partition select finish
|
|
||||||
d-i partman/confirm boolean true
|
|
||||||
d-i partman/confirm_nooverwrite boolean true
|
|
||||||
d-i partman-partitioning/confirm_write_new_label boolean true
|
|
||||||
|
|
||||||
# Disable CDROM entries after install
|
|
||||||
d-i apt-setup/disable-cdrom-entries boolean true
|
|
||||||
|
|
||||||
# Upgrade installed packages
|
|
||||||
d-i pkgsel/upgrade select full-upgrade
|
|
||||||
|
|
||||||
# Change default hostname
|
|
||||||
d-i netcfg/get_hostname string Kali
|
|
||||||
d-i netcfg/get_domain string unassigned-domain
|
|
||||||
#d-i netcfg/choose_interface select auto
|
|
||||||
d-i netcfg/choose_interface select eth0
|
|
||||||
d-i netcfg/dhcp_timeout string 60
|
|
||||||
|
|
||||||
d-i hw-detect/load_firmware boolean false
|
|
||||||
|
|
||||||
# Do not create a normal user account
|
|
||||||
d-i passwd/make-user boolean false
|
|
||||||
d-i passwd/root-password password toor
|
|
||||||
d-i passwd/root-password-again password toor
|
|
||||||
|
|
||||||
d-i apt-setup/use_mirror boolean true
|
|
||||||
d-i grub-installer/only_debian boolean true
|
|
||||||
d-i grub-installer/with_other_os boolean false
|
|
||||||
d-i grub-installer/bootdev string /dev/sda
|
|
||||||
d-i finish-install/reboot_in_progress note
|
|
||||||
|
|
||||||
# Disable popularity-contest
|
|
||||||
popularity-contest popularity-contest/participate boolean false
|
|
||||||
|
|
||||||
kismet kismet/install-setuid boolean false
|
|
||||||
kismet kismet/install-users string
|
|
||||||
|
|
||||||
sslh sslh/inetd_or_standalone select standalone
|
|
||||||
|
|
||||||
mysql-server-5.5 mysql-server/root_password_again password
|
|
||||||
mysql-server-5.5 mysql-server/root_password password
|
|
||||||
mysql-server-5.5 mysql-server/error_setting_password error
|
|
||||||
mysql-server-5.5 mysql-server-5.5/postrm_remove_databases boolean false
|
|
||||||
mysql-server-5.5 mysql-server-5.5/start_on_boot boolean true
|
|
||||||
mysql-server-5.5 mysql-server-5.5/nis_warning note
|
|
||||||
mysql-server-5.5 mysql-server-5.5/really_downgrade boolean false
|
|
||||||
mysql-server-5.5 mysql-server/password_mismatch error
|
|
||||||
mysql-server-5.5 mysql-server/no_upgrade_when_using_ndb error
|
|
Loading…
Reference in a new issue