Compare commits

..

No commits in common. "c6de02ec1bcfdccb16d909bc218d625dd3a1bae8" and "b851ca7f35946f127cdfbac7dd31159a601fb95c" have entirely different histories.

2 changed files with 13 additions and 1 deletions

View File

@ -41,7 +41,6 @@ all:
desktop: desktop:
hosts: hosts:
dsk-ryzen-0.desu.ltd: dsk-ryzen-0.desu.ltd:
ansible_host: 192.168.101.2
lap-s76-lemp9-0.desu.ltd: lap-s76-lemp9-0.desu.ltd:
prod: prod:
children: children:

View File

@ -3,6 +3,19 @@
--- ---
# Home desktops # Home desktops
- hosts: desktop - hosts: desktop
post_tasks:
- name: confirm liblzo2 dllmap
lineinfile:
path: /etc/mono/config
insertafter: "<configuration>"
line: '<dllmap dll="lzo2.dll" target="liblzo2.so.2" os="!windows"/>'
tags: [ desktop, mono ]
- name: give python3 cap_sys_ptrace
capabilities:
path: /usr/bin/python3.8
# Required for Randovania to access Dolphin memory
capability: cap_sys_ptrace=eip
tags: [ desktop, python, cap ]
tasks: tasks:
- name: assure pi-storage-1 nfs mountpoint - name: assure pi-storage-1 nfs mountpoint
file: path=/nfs/pi-storage-1.desu.ltd state=directory owner=root mode=0755 file: path=/nfs/pi-storage-1.desu.ltd state=directory owner=root mode=0755