Compare commits
2 commits
ea8286b693
...
dac4a8b65b
Author | SHA1 | Date | |
---|---|---|---|
dac4a8b65b | |||
dca3f14bb9 |
1 changed files with 8 additions and 8 deletions
16
spcd.sh
16
spcd.sh
|
@ -599,15 +599,18 @@ spcd_install_python() {
|
|||
|
||||
# TODO move to Python
|
||||
spcd_install_packages() {
|
||||
# epel
|
||||
spcd_step "Install EPEL"
|
||||
case "${SPCD_OS_ID}" in
|
||||
"${SPCD_OS_ALMA}" | "${SPCD_OS_ROCKY}") spcd_install_package "epel-release" ;;
|
||||
*) ;;
|
||||
esac
|
||||
# graphviz
|
||||
spcd_step "Install GraphViz"
|
||||
spcd_install_package "graphviz"
|
||||
# plantuml
|
||||
spcd_step "Install PlantUML"
|
||||
case "${SPCD_OS_ID}" in
|
||||
"${SPCD_OS_ALMA}" | "${SPCD_OS_ROCKY}") ;;
|
||||
*) spcd_install_package "plantuml" ;;
|
||||
esac
|
||||
spcd_install_package "plantuml"
|
||||
# python sphinx
|
||||
spcd_step "Install Python Sphinx"
|
||||
case "${SPCD_OS_ID}" in
|
||||
|
@ -634,10 +637,7 @@ spcd_install_packages() {
|
|||
spcd_install_package "rsync"
|
||||
# shellcheck
|
||||
spcd_step "Install ShellCheck"
|
||||
case "${SPCD_OS_ID}" in
|
||||
"${SPCD_OS_ALMA}" | "${SPCD_OS_ROCKY}") ;;
|
||||
*) spcd_install_package "shellcheck" ;;
|
||||
esac
|
||||
spcd_install_package "shellcheck"
|
||||
# shfmt
|
||||
spcd_step "Install ShellFormat"
|
||||
case "${SPCD_OS_ID}" in
|
||||
|
|
Loading…
Reference in a new issue