Current state & start docs.
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user