- name: Install gitui dependencies (RHEL) become: true package: name: &gitui_deps_rhel - perl state: present when: ansible_facts['os_family'] == "RedHat" - name: Installing gitui vars: rustup_user: "{{ running_user }}" rustup_cargo_crates: [gitui] ansible.builtin.include_role: name: hurricanehrndz.rustup - name: Setting up ncspot alias (spot) ansible.builtin.lineinfile: line: alias spot=ncspot state: present path: ~/.shellconfig/aliases.sh insertafter: EOF - name: Remove gitui dependencies (RHEL) become: true package: name: *gitui_deps_rhel state: absent when: ansible_facts['os_family'] == "RedHat"