Skip to content

Commit

Permalink
cmdeploy: install curl for downloading iroh
Browse files Browse the repository at this point in the history
  • Loading branch information
missytake authored and link2xt committed Nov 2, 2024
1 parent 35a254f commit 1221743
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions cmdeploy/src/cmdeploy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -485,6 +485,11 @@ def deploy_iroh_relay(config) -> None:
"aarch64": ("https://github.com/n0-computer/iroh/releases/download/v0.27.0/iroh-relay-v0.27.0-aarch64-unknown-linux-musl.tar.gz", "18039f0d39df78922a5055a0d4a5a8fa98a2a0e19b1eaa4c3fe6db73b8698697")
}[host.get_fact(facts.server.Arch)]

apt.packages(
name="Install curl",
packages=["curl"],
)

server.shell(
name="Download iroh-relay",
commands=[
Expand Down

0 comments on commit 1221743

Please sign in to comment.