Current state & start docs.

This commit is contained in:
2023-04-10 22:48:13 -07:00
parent e2543baf2d
commit 5668cd163d
10 changed files with 139 additions and 53 deletions

View File

@@ -79,7 +79,6 @@
- genext2fs
- genisoimage
- genromfs
- initramfs-tools
- makebootfat
- mmdebstrap
- proot
@@ -186,6 +185,26 @@
become: true
ansible.builtin.apt: name=code state=present
## rust
- name: check if cargo is installed
shell: command -v cargo
register: cargo_exists
ignore_errors: yes
- name: Download Installer
when: cargo_exists is failed
get_url:
url: https://sh.rustup.rs
dest: /tmp/sh.rustup.rs
mode: '0755'
force: 'yes'
- name: install rust/cargo
when: cargo_exists is failed
shell: /tmp/sh.rustup.rs -y
## AI/ML stuff
- name: install machine learning and AI tools