This commit is contained in:
Marc Beninca 2024-04-29 17:25:30 +02:00
parent ca19c5dc1b
commit 17ce94a63f
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

3
cd.sh
View file

@ -35,6 +35,7 @@ cd_main () {
cd_set_environment () { cd_set_environment () {
cd_step "Set environment" cd_step "Set environment"
CD_DNS_FILE="/etc/resolv.conf" CD_DNS_FILE="/etc/resolv.conf"
CD_GIT_PACKAGE="git"
# #
case "${CD_OS_NAME}" in case "${CD_OS_NAME}" in
"debian") "debian")
@ -227,7 +228,7 @@ cd_upgrade_packages () {
cd_install_git () { cd_install_git () {
cd_step "Install Git" cd_step "Install Git"
cd_install_package "git" cd_install_package "${CD_GIT_PACKAGE}"
} }
cd_install_python () { cd_install_python () {