Compare commits
No commits in common. "dac4a8b65bf164e0d013a6d66c91fea83a155df5" and "ea8286b69319d651785cab750b8b19c8420989a5" have entirely different histories.
dac4a8b65b
...
ea8286b693
1 changed files with 8 additions and 8 deletions
16
spcd.sh
16
spcd.sh
|
@ -599,18 +599,15 @@ spcd_install_python() {
|
||||||
|
|
||||||
# TODO move to Python
|
# TODO move to Python
|
||||||
spcd_install_packages() {
|
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
|
# graphviz
|
||||||
spcd_step "Install GraphViz"
|
spcd_step "Install GraphViz"
|
||||||
spcd_install_package "graphviz"
|
spcd_install_package "graphviz"
|
||||||
# plantuml
|
# plantuml
|
||||||
spcd_step "Install PlantUML"
|
spcd_step "Install PlantUML"
|
||||||
spcd_install_package "plantuml"
|
case "${SPCD_OS_ID}" in
|
||||||
|
"${SPCD_OS_ALMA}" | "${SPCD_OS_ROCKY}") ;;
|
||||||
|
*) spcd_install_package "plantuml" ;;
|
||||||
|
esac
|
||||||
# python sphinx
|
# python sphinx
|
||||||
spcd_step "Install Python Sphinx"
|
spcd_step "Install Python Sphinx"
|
||||||
case "${SPCD_OS_ID}" in
|
case "${SPCD_OS_ID}" in
|
||||||
|
@ -637,7 +634,10 @@ spcd_install_packages() {
|
||||||
spcd_install_package "rsync"
|
spcd_install_package "rsync"
|
||||||
# shellcheck
|
# shellcheck
|
||||||
spcd_step "Install ShellCheck"
|
spcd_step "Install ShellCheck"
|
||||||
spcd_install_package "shellcheck"
|
case "${SPCD_OS_ID}" in
|
||||||
|
"${SPCD_OS_ALMA}" | "${SPCD_OS_ROCKY}") ;;
|
||||||
|
*) spcd_install_package "shellcheck" ;;
|
||||||
|
esac
|
||||||
# shfmt
|
# shfmt
|
||||||
spcd_step "Install ShellFormat"
|
spcd_step "Install ShellFormat"
|
||||||
case "${SPCD_OS_ID}" in
|
case "${SPCD_OS_ID}" in
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue