rsync & ssh → packages

This commit is contained in:
Marc Beninca 2024-07-21 22:02:51 +02:00
parent 1d7d6b27e8
commit f4e45472cd
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

10
spcd.sh
View file

@ -33,9 +33,7 @@ spcd_main() {
spcd_install_git spcd_install_git
spcd_install_python spcd_install_python
# TODO move to Python # TODO move to Python
spcd_install_rsync spcd_install_packages
# TODO move to Python
spcd_install_ssh
spcd_clean_packages_cache spcd_clean_packages_cache
spcd_install_python_modules spcd_install_python_modules
spcd_write_python_module spcd_write_python_module
@ -609,13 +607,9 @@ spcd_install_python() {
} }
# TODO move to Python # TODO move to Python
spcd_install_rsync() { spcd_install_packages() {
spcd_step "Install Rsync" spcd_step "Install Rsync"
spcd_install_package "${SPCD_PKG_RSYNC}" spcd_install_package "${SPCD_PKG_RSYNC}"
}
# TODO move to Python
spcd_install_ssh() {
spcd_step "Install SSH" spcd_step "Install SSH"
spcd_install_package "${SPCD_PKG_SSH}" spcd_install_package "${SPCD_PKG_SSH}"
} }