mv/openssh
This commit is contained in:
parent
01cfa3db65
commit
580b0f1d48
1 changed files with 12 additions and 12 deletions
24
spcd.sh
24
spcd.sh
|
@ -760,6 +760,18 @@ spcd_install_packages() {
|
|||
# graphviz
|
||||
spcd_substep "Install GraphViz"
|
||||
spcd_install_package "graphviz"
|
||||
# openssh
|
||||
spcd_substep "Install OpenSSH"
|
||||
case "${SPCD_PM}" in
|
||||
"${SPCD_PM_APK}" | "${SPCD_PM_APT}")
|
||||
spcd_install_package "openssh-client"
|
||||
;;
|
||||
"${SPCD_PM_DNF}" | "${SPCD_PM_ZYPPER}")
|
||||
spcd_install_package "openssh-clients"
|
||||
;;
|
||||
"${SPCD_PM_PACMAN}") spcd_install_package "openssh" ;;
|
||||
*) ;;
|
||||
esac
|
||||
# plantuml
|
||||
spcd_substep "Install PlantUML"
|
||||
spcd_install_package "plantuml"
|
||||
|
@ -783,18 +795,6 @@ spcd_install_packages() {
|
|||
;;
|
||||
*) spcd_install_package "shfmt" ;;
|
||||
esac
|
||||
# openssh
|
||||
spcd_substep "Install OpenSSH"
|
||||
case "${SPCD_PM}" in
|
||||
"${SPCD_PM_APK}" | "${SPCD_PM_APT}")
|
||||
spcd_install_package "openssh-client"
|
||||
;;
|
||||
"${SPCD_PM_DNF}" | "${SPCD_PM_ZYPPER}")
|
||||
spcd_install_package "openssh-clients"
|
||||
;;
|
||||
"${SPCD_PM_PACMAN}") spcd_install_package "openssh" ;;
|
||||
*) ;;
|
||||
esac
|
||||
}
|
||||
|
||||
spcd_write_python_module() {
|
||||
|
|
Loading…
Reference in a new issue