Mercurial > code > home > repos > infra
diff apt.py @ 247:ff36727f3a10
pkg and host updates
author | drewp@bigasterisk.com |
---|---|
date | Thu, 28 Dec 2023 16:38:05 -0800 |
parents | b58f05be720a |
children | 5c10b1e8d0e1 |
line wrap: on
line diff
--- a/apt.py Thu Dec 14 16:46:37 2023 -0800 +++ b/apt.py Thu Dec 28 16:38:05 2023 -0800 @@ -12,7 +12,7 @@ for url, name in [ ('https://repo.steampowered.com/steam/archive/stable/steam.gpg', 'steam.gpg'), ]: - files.download(src=url, dest=f'/etc/apt/keyrings/{name}') + files.download(src=url, dest=f'/usr/share/keyrings/{name}') # vscode keeps making this, but I fetch my own files.file(path='/etc/apt/trusted.gpg.d/microsoft.gpg', present=False) @@ -24,6 +24,7 @@ server.shell(commands=[ f"curl -fsSL {url} | gpg --dearmor > /etc/apt/keyrings/{name}" for (url, name) in [ ('https://packages.microsoft.com/keys/microsoft.asc', 'ms.gpg'), + ('https://deb.nodesource.com/gpgkey/nodesource.gpg.key', 'nodesource-older.gpg'), # rm after everything's on 23.10 ('https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key', 'nodesource.gpg'), ('https://dl.google.com/linux/linux_signing_key.pub', 'chrome.gpg'), ('https://ftp-master.debian.org/keys/archive-key-11.asc', 'bullseye.gpg'),