diff --git a/roles/tmux/tasks/Debian.yaml b/roles/tmux/tasks/Debian.yaml index d0783f6..34cecc5 100644 --- a/roles/tmux/tasks/Debian.yaml +++ b/roles/tmux/tasks/Debian.yaml @@ -1,12 +1,17 @@ --- - name: install apt packages become: true - package: + apt: name: - tmux - gawk - - jq - sysstat - urlview - - xclip + state: latest + +- name: install apt package + when: '"WSL" not in ansible_kernel' + become: true + apt: + name: xsel state: latest