Skip to content

Commit f73a6d9

Browse files
committed
Renamed kalilinux to kali
1 parent 25d60fd commit f73a6d9

File tree

12 files changed

+13
-11
lines changed

12 files changed

+13
-11
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ A command line application for installing and running GNU/Linux distributions in
1515
### Usage
1616

1717
Main help:
18+
1819
```
1920
USAGE:
2021
cli.sh [OPTIONS] COMMAND ...
@@ -54,9 +55,10 @@ COMMANDS:
5455
```
5556

5657
Help for the parameters of the main components:
58+
5759
```
5860
--distrib="debian"
59-
The code name of Linux distribution, which will be installed. Supported "debian", "ubuntu", "kalilinux", "fedora", "centos", "archlinux", "gentoo", "slackware".
61+
The code name of Linux distribution, which will be installed. Supported "debian", "ubuntu", "kali", "fedora", "centos", "archlinux", "gentoo", "slackware".
6062
6163
--target-type="file"
6264
The container deployment type, can specify "file", "directory", "partition", "ram" or "custom".
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Linux Deploy Component
22
# (c) Anton Skshidlevsky <meefik@gmail.com>, GPLv3
33

4-
NAME="kalilinux"
4+
NAME="kali"
55
DESC="Bootstrap for Kali Linux"
66
EXTENDS="bootstrap/debian"
77
DEPENDS="bootstrap"
File renamed without changes.

include/core/locale/deploy.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ do_configure()
1515
LOCALE="C"
1616
fi
1717
case "${DISTRIB}" in
18-
debian|ubuntu|kalilinux)
18+
debian|ubuntu|kali)
1919
echo "LANG=${LOCALE}" > "${CHROOT_DIR}/etc/default/locale"
2020
;;
2121
archlinux|centos)

include/desktop/lxde/deploy.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ do_install()
77
msg ":: Installing ${COMPONENT} ... "
88
local packages=""
99
case "${DISTRIB}:${ARCH}:${SUITE}" in
10-
debian:*|ubuntu:*|kalilinux:*)
10+
debian:*|ubuntu:*|kali:*)
1111
packages="desktop-base x11-xserver-utils xfonts-base xfonts-utils lxde lxde-common menu-xdg hicolor-icon-theme gtk2-engines"
1212
apt_install ${packages}
1313
;;

include/desktop/mate/deploy.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ do_install()
77
msg ":: Installing ${COMPONENT} ... "
88
local packages=""
99
case "${DISTRIB}:${ARCH}:${SUITE}" in
10-
debian:*|ubuntu:*|kalilinux:*)
10+
debian:*|ubuntu:*|kali:*)
1111
packages="desktop-base dbus-x11 x11-xserver-utils xfonts-base xfonts-utils mate-core"
1212
apt_install ${packages}
1313
;;

include/desktop/xfce/deploy.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ do_install()
77
msg ":: Installing ${COMPONENT} ... "
88
local packages=""
99
case "${DISTRIB}:${ARCH}:${SUITE}" in
10-
debian:*|ubuntu:*|kalilinux:*)
10+
debian:*|ubuntu:*|kali:*)
1111
packages="desktop-base dbus-x11 x11-xserver-utils xfonts-base xfonts-utils xfce4 xfce4-terminal tango-icon-theme hicolor-icon-theme"
1212
apt_install ${packages}
1313
;;

include/desktop/xterm/deploy.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ do_install()
77
msg ":: Installing ${COMPONENT} ... "
88
local packages=""
99
case "${DISTRIB}:${ARCH}:${SUITE}" in
10-
debian:*|ubuntu:*|kalilinux:*)
10+
debian:*|ubuntu:*|kali:*)
1111
packages="desktop-base x11-xserver-utils xfonts-base xfonts-utils xterm"
1212
apt_install ${packages}
1313
;;

include/extra/pulse/deploy.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ do_install()
1010
msg ":: Installing ${COMPONENT} ... "
1111
local packages=""
1212
case "${DISTRIB}:${ARCH}:${SUITE}" in
13-
debian:*|ubuntu:*|kalilinux:*)
13+
debian:*|ubuntu:*|kali:*)
1414
packages="libasound2-plugins"
1515
apt_install ${packages}
1616
;;

include/extra/ssh/deploy.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ do_install()
99
msg ":: Installing ${COMPONENT} ... "
1010
local packages=""
1111
case "${DISTRIB}:${ARCH}:${SUITE}" in
12-
debian:*|ubuntu:*|kalilinux:*)
12+
debian:*|ubuntu:*|kali:*)
1313
packages="openssh-server"
1414
[ "${METHOD}" = "proot" ] && packages="${packages} fakechroot"
1515
apt_install ${packages}

0 commit comments

Comments
 (0)