Urejanje/usklajevanje - naprej

This commit is contained in:
polz 2023-09-11 16:59:33 +02:00
parent e2efb27cd2
commit 66ace214d8
6 changed files with 42 additions and 4 deletions

View file

@ -0,0 +1,3 @@
- name: Do not install C development tools
debug:
msg: "Do not install C development tools"

View file

@ -0,0 +1,3 @@
- name: Do not install GUI devel tools
debug:
msg: "Do not install GUI development libraries and tools"

View file

@ -0,0 +1,28 @@
- name: Install Ninja
debug:
msg: "Do not install Ninja"
- name: Check Ninja install status
win_stat:
path: "%ProgramFiles%\\Ninja-build\\ninja.exe"
register: file
- when: not file.stat.exists
block:
- name: Download Ninja-build
win_get_url:
url: https://github.com/ninja-build/ninja/releases/download/v1.11.1/ninja-linux.zip
dest: 'C:\'
register: download
- name: Create Ninja-build directory
win_file:
path: "%ProgramFiles%\\Ninja-build"
state: directory
- name: Install Ninja-build
win_unzip:
src: "{{ download.dest }}"
dest: "%ProgramFiles%\\Ninja-build"
delete_archive: yes

View file

@ -0,0 +1,3 @@
- name: Do not install OCaml
debug:
msg: "Do not install OCaml"

View file

@ -0,0 +1,2 @@
- name: Install pandas
win_command: pip install pandas

View file

@ -1,4 +1,3 @@
- name: Install rlwrap
apt:
name: rlwrap
state: latest
- name: Do not install rlwrap
debug:
msg: "Do not install rlwrap"