classroom/roles/linroom/tasks/notepad++.yml

19 lines
498 B
YAML
Raw Normal View History

# 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
2023-09-08 21:29:14 +00:00
- 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