−install

This commit is contained in:
Marc Beninca 2024-08-25 21:06:03 +02:00
parent 5b1aa53adf
commit b618dd5e57
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

View file

@ -756,7 +756,7 @@ index-url = ${SPCD_URL_PYTHON}
}
spcd_install_python_modules() {
spcd_step_in "Install Python modules"
spcd_step_in "Python modules"
spcd_ipm__target="${SPCD_PYTHON_VENV_PACKAGES}"
spcd_step "List"
spcd_ls "${spcd_ipm__target}"
@ -781,9 +781,9 @@ spcd_install_python_modules() {
}
spcd_install_packages() {
spcd_step_in "Install packages"
spcd_step_in "OS packages"
# epel
spcd_step "Install EPEL"
spcd_step "EPEL"
case "${SPCD_OS_ID}" in
"${SPCD_OS_ALMA}" | "${SPCD_OS_ROCKY}")
spcd_install_package "epel-release"
@ -797,13 +797,13 @@ spcd_install_packages() {
*) ;;
esac
# bats
spcd_step "Install BATS"
spcd_step "BATS"
spcd_install_package "bats"
# graphviz
spcd_step "Install GraphViz"
spcd_step "GraphViz"
spcd_install_package "graphviz"
# openssh
spcd_step "Install OpenSSH"
spcd_step "OpenSSH"
case "${SPCD_PM}" in
"${SPCD_PM_APK}" | "${SPCD_PM_APT}")
spcd_install_package "openssh-client"
@ -815,13 +815,13 @@ spcd_install_packages() {
*) ;;
esac
# plantuml
spcd_step "Install PlantUML"
spcd_step "PlantUML"
spcd_install_package "plantuml"
# rsync
spcd_step "Install Rsync"
spcd_step "Rsync"
spcd_install_package "rsync"
# shell check
spcd_step "Install ShellCheck"
spcd_step "ShellCheck"
case "${SPCD_PF}" in
"${SPCD_PF_RPM}")
spcd_install_package "ShellCheck"
@ -829,7 +829,7 @@ spcd_install_packages() {
*) spcd_install_package "shellcheck" ;;
esac
# shfmt
spcd_step "Install ShellFormat"
spcd_step "ShellFormat"
case "${SPCD_OS_ID}" in
"${SPCD_OS_ALMA}" | "${SPCD_OS_ROCKY}") ;;
"${SPCD_OS_DEBIAN}")