diff options
author | Dan Fedele <dan.fedele@gmail.com> | 2022-11-07 10:09:01 -0500 |
---|---|---|
committer | Dan Fedele <dan.fedele@gmail.com> | 2022-11-07 10:09:01 -0500 |
commit | d205bb0f7bc281b804e0f1a68c972ac7634df73c (patch) | |
tree | 95d5a7d04751e7ae3c84db04d228a8c7bc372f3c | |
parent | 71003821ac5630c8ea73851d4b87550c3eaf7c24 (diff) |
Wrong ansible module used for kitty install
-rw-r--r-- | kali.yml | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -195,7 +195,8 @@ user_install: no - name: Install Kitty Terminal Emulator 🐱 - ansible.builtin.command: "/usr/bin/curl -sL {{ kitty_installer }} | sh /dev/stdin dest=/opt launch=n" + ansible.builtin.shell: + cmd: "/usr/bin/curl -sL {{ kitty_installer }} | sh /dev/stdin dest=/opt launch=n" - name: Create Desktop Icon for Kitty 🐱 ansible.builtin.copy: |