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

25 lines
574 B
YAML
Raw Normal View History

2023-09-11 20:30:48 +00:00
# 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: Create dir
file:
path: /opt/notepad++
state: directory
2023-09-11 20:30:48 +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.zip
2023-09-11 20:30:48 +00:00
dest: /opt/notepad++
remote_src: yes