Compare commits
No commits in common. "998c5f23864b7941197b8daf9ebe8afb79458925" and "d594bb532e15b56feff68e5236908914f09f795f" have entirely different histories.
998c5f2386
...
d594bb532e
1 changed files with 8 additions and 22 deletions
30
cd.sh
30
cd.sh
|
@ -87,33 +87,19 @@ Dir::Etc::SourceParts \"\";
|
||||||
esac
|
esac
|
||||||
}
|
}
|
||||||
|
|
||||||
function cd_set_https_verification_off {
|
|
||||||
cd_step "${FUNCNAME}"
|
|
||||||
case "${CD_OS_NAME}" in
|
|
||||||
'debian')
|
|
||||||
cd_write '/etc/apt/apt.conf.d/https' "\
|
|
||||||
Acquire::https::Verify-Peer False;
|
|
||||||
"
|
|
||||||
;;
|
|
||||||
*) exit 1 ;;
|
|
||||||
esac
|
|
||||||
}
|
|
||||||
|
|
||||||
function cd_update_packages_catalog {
|
|
||||||
cd_step "${FUNCNAME}"
|
|
||||||
case "${CD_OS_NAME}" in
|
|
||||||
'debian') apt-get update ;;
|
|
||||||
*) exit 1 ;;
|
|
||||||
esac
|
|
||||||
}
|
|
||||||
|
|
||||||
function cd_main {
|
function cd_main {
|
||||||
cd_set_dns_resolving
|
cd_set_dns_resolving
|
||||||
cd_set_packages_repositories
|
cd_set_packages_repositories
|
||||||
cd_set_packages_configuration
|
cd_set_packages_configuration
|
||||||
cd_set_https_verification_off
|
|
||||||
cd_update_packages_catalog
|
|
||||||
|
|
||||||
|
cd_step "disable package verification"
|
||||||
|
echo -n "\
|
||||||
|
Acquire::https::Verify-Peer False;
|
||||||
|
" > '/etc/apt/apt.conf.d/https' \
|
||||||
|
|| exit
|
||||||
|
cd_step "update package catalog"
|
||||||
|
apt-get update \
|
||||||
|
|| exit
|
||||||
cd_step "install CA certificates package"
|
cd_step "install CA certificates package"
|
||||||
apt-get install --yes 'ca-certificates' \
|
apt-get install --yes 'ca-certificates' \
|
||||||
|| exit
|
|| exit
|
||||||
|
|
Loading…
Reference in a new issue