Initialer Import der Synology Scripts

This commit is contained in:
root
2026-08-05 08:43:57 +02:00
commit 5e32a7c411
404 changed files with 79932 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
# roles/SERVER_TYP_03/tasks/main.yml
- name: Install Notepad++
import_tasks: npp.yaml
- name: Install VLC
import_tasks: vlc.yaml
- name: Ping erlauben
import_tasks: ping.yml
+16
View File
@@ -0,0 +1,16 @@
- name: Download NPP
ansible.windows.win_get_url:
url: https://github.com/notepad-plus-plus/notepad-plus-plus/releases/download/v8.9/npp.8.9.Installer.exe
dest: C:\Windows\Temp\npp.exe
force: yes
- name: Install Notepad++ silent
ansible.windows.win_shell: |
Start-Process "C:\Windows\Temp\npp.exe" -ArgumentList "/S" -Wait
args:
creates: C:\Program Files\Notepad++\notepad++.exe
- name: Delete installer
ansible.windows.win_file:
path: C:\Windows\Temp\npp.exe
state: absent
+11
View File
@@ -0,0 +1,11 @@
- name: Allow Ping IN IPv4
win_firewall_rule:
name: "Allow Incoming ICMPv4 Echo Request (Ping)"
enabled: no
state: present
profiles: "domain,private,public"
action: allow
direction: in
protocol: icmpv4
icmp_type:code:
- '8:*'
+14
View File
@@ -0,0 +1,14 @@
- name: Download VLC
win_get_url:
url: "https://www.vlc.de/download/vlc/msi/vlc-3.0.4-win64.msi"
dest: "C:\\Windows\\Temp\\vlc.msi"
- name: Install VLC
win_package:
path: "C:\\Windows\\Temp\\vlc.msi"
state: present
- name: Remove VLC
win_file:
path: "C:\\Windows\\Temp\\vlc.msi"
state: absent