classroom/roles/linroom/tasks/notepad++.yml
2023-09-08 23:29:14 +02:00

19 lines
498 B
YAML

# TODO install Notepad++
# ansible_os_family: "Windows" / "Debian"
- name: Install notepad++
debug:
msg: "Install Notepad++"
- name: Install Wine
apt:
name: wine-development
state: latest
- name: Install Wine binfmt support
apt:
name: wine-binfmt
state: latest
- name: Download and unpack Notepad++
unarchive:
src: https://github.com/notepad-plus-plus/notepad-plus-plus/releases/download/v8.5.7/npp.8.5.7.portable.x64.7z
dest: /opt/notepad++
remote_src: yes