parent
5d2f6dbf7f
commit
35c6af50e7
1 changed files with 8 additions and 8 deletions
16
cd.sh
16
cd.sh
|
@ -160,6 +160,14 @@ cd_install_ca () {
|
|||
esac
|
||||
}
|
||||
|
||||
cd_set_https_verification_on () {
|
||||
cd_step "${FUNCNAME}"
|
||||
case "${CD_OS_NAME}" in
|
||||
'debian') rm '/etc/apt/apt.conf.d/https' ;;
|
||||
*) exit 1 ;;
|
||||
esac
|
||||
}
|
||||
|
||||
cd_install_git () {
|
||||
cd_step "${FUNCNAME}"
|
||||
case "${CD_OS_NAME}" in
|
||||
|
@ -176,14 +184,6 @@ cd_install_python () {
|
|||
esac
|
||||
}
|
||||
|
||||
cd_set_https_verification_on () {
|
||||
cd_step "${FUNCNAME}"
|
||||
case "${CD_OS_NAME}" in
|
||||
'debian') rm '/etc/apt/apt.conf.d/https' ;;
|
||||
*) exit 1 ;;
|
||||
esac
|
||||
}
|
||||
|
||||
cd_upgrade_packages () {
|
||||
cd_step "${FUNCNAME}"
|
||||
case "${CD_OS_NAME}" in
|
||||
|
|
Loading…
Reference in a new issue