Knowledge base of ~80+ markdown files across 14 domains (00-13), Logseq graph, hardware design files (KiCAD), infrastructure configs, and talas-wiki static site. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
19 lines
442 B
YAML
19 lines
442 B
YAML
---
|
|
# file: roles/rust/tasks/main.yml
|
|
|
|
- name: "download rustup-init"
|
|
get_url:
|
|
url: https://static.rust-lang.org/rustup/dist/x86_64-unknown-linux-gnu/rustup-init
|
|
dest: /dev/shm/rustup-init
|
|
mode: 0755
|
|
tags: rust
|
|
|
|
- name: "install rust"
|
|
command: "/dev/shm/rustup-init -q -y --default-toolchain stable"
|
|
tags: rust
|
|
|
|
- name: "remove /dev/shm/rustup-init"
|
|
file:
|
|
path: "/dev/shm/rustup-init"
|
|
state: absent
|
|
tags: tags
|