setup update complete

This commit is contained in:
2026-09-21 06:48:49 -06:00
parent b67a76d0da
commit 7b2b01e022
38 changed files with 1376 additions and 848 deletions
+16
View File
@@ -0,0 +1,16 @@
#####################################################################
setup.packages.installer.apt-get.update-repositories() { sudo apt-get update && sudo apt-get upgrade; }
setup.packages.installer.apt-get.list-installed() { dpkg-query -W -f='${Package}\n' 2>/dev/null; }
setup.packages.installer.apt-get.install-batch() { sudo apt-get install --yes "${@}"; }
setup.packages.installer.apt-get.install-managed() {
local target="${1}"
echo.status "checking / installing '${target}'"
sudo apt-get install --yes "${target}" \
&& echo.success "'${target}' installed" \
|| echo.error "failed to install ${target}" \
;
}