−install
This commit is contained in:
parent
5b1aa53adf
commit
b618dd5e57
1 changed files with 10 additions and 10 deletions
20
spcd/main.sh
20
spcd/main.sh
|
@ -756,7 +756,7 @@ index-url = ${SPCD_URL_PYTHON}
|
||||||
}
|
}
|
||||||
|
|
||||||
spcd_install_python_modules() {
|
spcd_install_python_modules() {
|
||||||
spcd_step_in "Install Python modules"
|
spcd_step_in "Python modules"
|
||||||
spcd_ipm__target="${SPCD_PYTHON_VENV_PACKAGES}"
|
spcd_ipm__target="${SPCD_PYTHON_VENV_PACKAGES}"
|
||||||
spcd_step "List"
|
spcd_step "List"
|
||||||
spcd_ls "${spcd_ipm__target}"
|
spcd_ls "${spcd_ipm__target}"
|
||||||
|
@ -781,9 +781,9 @@ spcd_install_python_modules() {
|
||||||
}
|
}
|
||||||
|
|
||||||
spcd_install_packages() {
|
spcd_install_packages() {
|
||||||
spcd_step_in "Install packages"
|
spcd_step_in "OS packages"
|
||||||
# epel
|
# epel
|
||||||
spcd_step "Install EPEL"
|
spcd_step "EPEL"
|
||||||
case "${SPCD_OS_ID}" in
|
case "${SPCD_OS_ID}" in
|
||||||
"${SPCD_OS_ALMA}" | "${SPCD_OS_ROCKY}")
|
"${SPCD_OS_ALMA}" | "${SPCD_OS_ROCKY}")
|
||||||
spcd_install_package "epel-release"
|
spcd_install_package "epel-release"
|
||||||
|
@ -797,13 +797,13 @@ spcd_install_packages() {
|
||||||
*) ;;
|
*) ;;
|
||||||
esac
|
esac
|
||||||
# bats
|
# bats
|
||||||
spcd_step "Install BATS"
|
spcd_step "BATS"
|
||||||
spcd_install_package "bats"
|
spcd_install_package "bats"
|
||||||
# graphviz
|
# graphviz
|
||||||
spcd_step "Install GraphViz"
|
spcd_step "GraphViz"
|
||||||
spcd_install_package "graphviz"
|
spcd_install_package "graphviz"
|
||||||
# openssh
|
# openssh
|
||||||
spcd_step "Install OpenSSH"
|
spcd_step "OpenSSH"
|
||||||
case "${SPCD_PM}" in
|
case "${SPCD_PM}" in
|
||||||
"${SPCD_PM_APK}" | "${SPCD_PM_APT}")
|
"${SPCD_PM_APK}" | "${SPCD_PM_APT}")
|
||||||
spcd_install_package "openssh-client"
|
spcd_install_package "openssh-client"
|
||||||
|
@ -815,13 +815,13 @@ spcd_install_packages() {
|
||||||
*) ;;
|
*) ;;
|
||||||
esac
|
esac
|
||||||
# plantuml
|
# plantuml
|
||||||
spcd_step "Install PlantUML"
|
spcd_step "PlantUML"
|
||||||
spcd_install_package "plantuml"
|
spcd_install_package "plantuml"
|
||||||
# rsync
|
# rsync
|
||||||
spcd_step "Install Rsync"
|
spcd_step "Rsync"
|
||||||
spcd_install_package "rsync"
|
spcd_install_package "rsync"
|
||||||
# shell check
|
# shell check
|
||||||
spcd_step "Install ShellCheck"
|
spcd_step "ShellCheck"
|
||||||
case "${SPCD_PF}" in
|
case "${SPCD_PF}" in
|
||||||
"${SPCD_PF_RPM}")
|
"${SPCD_PF_RPM}")
|
||||||
spcd_install_package "ShellCheck"
|
spcd_install_package "ShellCheck"
|
||||||
|
@ -829,7 +829,7 @@ spcd_install_packages() {
|
||||||
*) spcd_install_package "shellcheck" ;;
|
*) spcd_install_package "shellcheck" ;;
|
||||||
esac
|
esac
|
||||||
# shfmt
|
# shfmt
|
||||||
spcd_step "Install ShellFormat"
|
spcd_step "ShellFormat"
|
||||||
case "${SPCD_OS_ID}" in
|
case "${SPCD_OS_ID}" in
|
||||||
"${SPCD_OS_ALMA}" | "${SPCD_OS_ROCKY}") ;;
|
"${SPCD_OS_ALMA}" | "${SPCD_OS_ROCKY}") ;;
|
||||||
"${SPCD_OS_DEBIAN}")
|
"${SPCD_OS_DEBIAN}")
|
||||||
|
|
Loading…
Reference in a new issue