parent
2eec8bef61
commit
fd6a31e3be
1 changed files with 9 additions and 0 deletions
9
cd.sh
9
cd.sh
|
@ -131,6 +131,14 @@ function cd_install_git {
|
|||
esac
|
||||
}
|
||||
|
||||
function cd_install_packages_tools {
|
||||
cd_step "${FUNCNAME}"
|
||||
case "${CD_OS_NAME}" in
|
||||
'debian') cd_install_package 'apt-utils' ;;
|
||||
*) exit 1 ;;
|
||||
esac
|
||||
}
|
||||
|
||||
function cd_install_python {
|
||||
cd_step "${FUNCNAME}"
|
||||
case "${CD_OS_NAME}" in
|
||||
|
@ -169,6 +177,7 @@ function cd_main {
|
|||
cd_set_packages_configuration
|
||||
cd_set_https_verification_off
|
||||
cd_update_packages_catalog
|
||||
cd_install_packages_tools
|
||||
cd_install_ca
|
||||
cd_set_https_verification_on
|
||||
cd_update_packages_catalog
|
||||
|
|
Loading…
Reference in a new issue