diff options
author | Dan Fedele <dan.fedele@gmail.com> | 2022-09-16 15:51:11 -0400 |
---|---|---|
committer | Dan Fedele <dan.fedele@gmail.com> | 2022-09-16 15:51:11 -0400 |
commit | c1c81a728173638abf84ad21df34d398fa956240 (patch) | |
tree | 61228c554d80e79ee4855e9a20be9d87dbc23099 | |
parent | e6cfb1c39760fad4fd005c4bab1ef995d953cc43 (diff) |
Fixed broken vars
-rw-r--r-- | kali.yml | 4 | ||||
-rw-r--r-- | parrot.yml | 2 |
2 files changed, 3 insertions, 3 deletions
@@ -171,7 +171,7 @@ - name: Downloading Ysoserial JAR file ansible.builtin.get_url: - url: {{ ysoserial_jar }} + url: "{{ ysoserial_jar }}" dest: /opt/ysoserial/ysoserial-all.jar mode: '0644' @@ -183,7 +183,7 @@ user_install: no - name: Install Kitty Terminal Emulator 🐱 - ansible.builtin.command: /usr/bin/curl -sL {{ kitty_installer }} | sh /dev/sdtin dest=/opt launch=n + ansible.builtin.command: "/usr/bin/curl -sL {{ kitty_installer }} | sh /dev/sdtin dest=/opt launch=n" - name: Create Desktop Icon for Kitty 🐱 ansible.builtin.copy: @@ -182,7 +182,7 @@ - name: Downloading Ysoserial JAR file ansible.builtin.get_url: - url: {{ ysoserial_jar }} + url: "{{ ysoserial_jar }}" dest: /opt/ysoserial/ysoserial-all.jar mode: '0644' |