pm/install
This commit is contained in:
parent
126de92af4
commit
2696514c24
1 changed files with 9 additions and 9 deletions
|
@ -890,6 +890,14 @@ spcd_f_ca_write() {
|
||||||
# │ f │ pm = package manager │
|
# │ f │ pm = package manager │
|
||||||
# ╰───┴──────────────────────╯
|
# ╰───┴──────────────────────╯
|
||||||
|
|
||||||
|
spcd_f_pm_install() {
|
||||||
|
spcd_step "Install tools"
|
||||||
|
case "${SPCD_PM}" in
|
||||||
|
"${SPCD_PM_APT}") spcd_f_pm_pkg_install "apt-utils" ;;
|
||||||
|
*) ;;
|
||||||
|
esac
|
||||||
|
}
|
||||||
|
|
||||||
# ╭───┬────┬───────╮
|
# ╭───┬────┬───────╮
|
||||||
# │ f │ pm │ https │
|
# │ f │ pm │ https │
|
||||||
# ╰───┴────┴───────╯
|
# ╰───┴────┴───────╯
|
||||||
|
@ -1356,14 +1364,6 @@ Dir::Etc::SourceParts \"\";
|
||||||
esac
|
esac
|
||||||
}
|
}
|
||||||
|
|
||||||
spcd_step__packages_install_tools() {
|
|
||||||
spcd_step "Install tools"
|
|
||||||
case "${SPCD_PM}" in
|
|
||||||
"${SPCD_PM_APT}") spcd_f_pm_pkg_install "apt-utils" ;;
|
|
||||||
*) ;;
|
|
||||||
esac
|
|
||||||
}
|
|
||||||
|
|
||||||
spcd_step__packages_install_locales() {
|
spcd_step__packages_install_locales() {
|
||||||
spcd_step_in "Locales"
|
spcd_step_in "Locales"
|
||||||
spcd_step "Install"
|
spcd_step "Install"
|
||||||
|
@ -1585,7 +1585,7 @@ spcd_main() {
|
||||||
spcd_step__packages_set_configuration
|
spcd_step__packages_set_configuration
|
||||||
spcd_f_pm_https_trust
|
spcd_f_pm_https_trust
|
||||||
spcd_f_pm_pkg_update
|
spcd_f_pm_pkg_update
|
||||||
spcd_step__packages_install_tools
|
spcd_f_pm_install
|
||||||
spcd_step__packages_install_locales
|
spcd_step__packages_install_locales
|
||||||
spcd_step_out
|
spcd_step_out
|
||||||
# ca
|
# ca
|
||||||
|
|
Loading…
Reference in a new issue