Skip to content

Commit

Permalink
btop: Ensure executable bit on install.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
saltydk committed Sep 22, 2024
1 parent a5ad249 commit 82732da
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion roles/btop/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,13 @@
args:
chdir: "/tmp/btop"

- name: "btop | Ensure executable bit on install.sh"
ansible.builtin.file:
path: "/tmp/btop/btop/install.sh"
mode: "0755"

- name: "btop | Install btop"
ansible.builtin.shell: "/tmp/btop/btop/install.sh"
ansible.builtin.shell: "bash /tmp/btop/btop/install.sh"
args:
chdir: "/tmp/btop/btop"
become: yes
Expand Down

0 comments on commit 82732da

Please sign in to comment.