From 07a28018b0301c90636cf100f83e9d75597e2c29 Mon Sep 17 00:00:00 2001 From: Salt Date: Fri, 4 Dec 2020 00:52:40 -0600 Subject: [PATCH] Add post-task to confirm a liblzo2 dllmap Need it for rando --- site.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/site.yml b/site.yml index 4f95595..ca8b5f6 100755 --- a/site.yml +++ b/site.yml @@ -12,13 +12,21 @@ tags: [ ansible, common ] # Home desktops - hosts: desktop - tasks: + post_tasks: + - name: confirm liblzo2 dllmap + lineinfile: + path: /etc/mono/config + insertafter: "" + line: '' + become: yes + 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 become: yes + tags: [ desktop, python, cap ] roles: - role: desktop become: yes