wip/common
This commit is contained in:
parent
ccd9464329
commit
1f1cd59e19
1 changed files with 6 additions and 2 deletions
8
cd.sh
8
cd.sh
|
@ -42,7 +42,8 @@ cd_main () {
|
||||||
cd_set_environment_variables () {
|
cd_set_environment_variables () {
|
||||||
cd_step "Set environment variables"
|
cd_step "Set environment variables"
|
||||||
# operating system
|
# operating system
|
||||||
case "$(cd_grep_os ID)" in
|
CD_OS_ID="$(cd_grep_os ID)"
|
||||||
|
case "${CD_OS_ID}" in
|
||||||
"almalinux")
|
"almalinux")
|
||||||
CD_OS_ID="${CD_OS_ALMA}"
|
CD_OS_ID="${CD_OS_ALMA}"
|
||||||
CD_OS_VERSION=$(cd_grep_os VERSION_ID \
|
CD_OS_VERSION=$(cd_grep_os VERSION_ID \
|
||||||
|
@ -57,11 +58,15 @@ cd_set_environment_variables () {
|
||||||
CD_OS_ID="${CD_OS_DEBIAN}"
|
CD_OS_ID="${CD_OS_DEBIAN}"
|
||||||
CD_OS_VERSION="$(cd_grep_os VERSION_CODENAME)"
|
CD_OS_VERSION="$(cd_grep_os VERSION_CODENAME)"
|
||||||
;;
|
;;
|
||||||
|
*) cd_error_os "CD_OS_ID" ;;
|
||||||
esac
|
esac
|
||||||
# universal
|
# universal
|
||||||
CD_DNS_FILE="/etc/resolv.conf"
|
CD_DNS_FILE="/etc/resolv.conf"
|
||||||
CD_PKG_CA="ca-certificates"
|
CD_PKG_CA="ca-certificates"
|
||||||
CD_PKG_GIT="git"
|
CD_PKG_GIT="git"
|
||||||
|
# common
|
||||||
|
case "${CD_OS_ID}" in
|
||||||
|
esac
|
||||||
#
|
#
|
||||||
case "${CD_OS_ID}" in
|
case "${CD_OS_ID}" in
|
||||||
"${CD_OS_ALMA}")
|
"${CD_OS_ALMA}")
|
||||||
|
@ -145,7 +150,6 @@ Dir::Etc::SourceParts \"\";
|
||||||
CD_PYTHON_PACKAGE="python3"
|
CD_PYTHON_PACKAGE="python3"
|
||||||
CD_PYTHON_PACKAGES="/usr/lib/python3/dist-packages"
|
CD_PYTHON_PACKAGES="/usr/lib/python3/dist-packages"
|
||||||
;;
|
;;
|
||||||
*) cd_error_os "CD_OS_ID" ;;
|
|
||||||
esac
|
esac
|
||||||
# variables
|
# variables
|
||||||
[ "${CD_CA_1}" ] && CD_CA=true
|
[ "${CD_CA_1}" ] && CD_CA=true
|
||||||
|
|
Loading…
Reference in a new issue