mirror of
https://github.com/Crosstalk-Solutions/project-nomad.git
synced 2026-03-28 03:29:25 +01:00
fix(install): add gpg as a required dependency
The NVIDIA container toolkit setup requires gpg to dearmor the GPG key, but minimal Debian/Ubuntu installs may not have it present. Adds gpg to the dependency check alongside curl so it gets installed automatically. Closes #522 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
44ecf41ca6
commit
14f31e4a1c
|
|
@ -94,6 +94,11 @@ ensure_dependencies_installed() {
|
|||
missing_deps+=("curl")
|
||||
fi
|
||||
|
||||
# Check for gpg (required for NVIDIA container toolkit keyring)
|
||||
if ! command -v gpg &> /dev/null; then
|
||||
missing_deps+=("gpg")
|
||||
fi
|
||||
|
||||
# Check for whiptail (used for dialogs, though not currently active)
|
||||
# if ! command -v whiptail &> /dev/null; then
|
||||
# missing_deps+=("whiptail")
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user