This commit is contained in:
2025-08-05 18:37:23 -05:00
parent 407213af8c
commit 1dbd1e781f
7 changed files with 26 additions and 44 deletions

View File

@@ -96,6 +96,12 @@ print_pkg_mgr() {
echo "export req_pkgs=\"$(print_req_pkgs)\""
}
print_os() {
if [[ -f /etc/os-release ]]; then
source /etc/os-release ; echo "${ID}-${VERSION_ID}"
fi
}
check_for_req_pkgs() {
echo_info "checking for required packages"
local missing_pkgs=()