summaryrefslogtreecommitdiff
path: root/subplot.yml
blob: a1455e9e7844ba4afada780f3e269dc02d6ce31b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
- hosts: image
  tasks:

    - name: "install tools for Rust and Subplot"
      apt:
        name:
          - build-essential
          - cmake
          - curl
          - graphviz
          - librsvg2-bin
          - plantuml
          - daemonize
          - procps

    - name: "install rustup"
      shell: |
        curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs > /tmp/rustup.sh
        sh /tmp/rustup.sh -y --no-modify-path        

  vars:
    ansible_python_interpreter: /usr/bin/python3