This repository has been archived on 2024-04-30. You can view files and clone it, but cannot push or open issues or pull requests.
setup/roles/bash/tasks/main.yml
2023-01-15 15:00:38 +01:00

19 lines
390 B
YAML

- name: Install packages
become: true
apt:
pkg:
- fd-find
- bat
- name: Set default shell to bash
become: true
user:
name: "{{ ansible_user_id }}"
shell: /usr/bin/bash
- name: Install .bashrc
copy:
src: "{{ role_path }}/files/bashrc"
dest: ~/.bashrc
- name: Install .fzf.bash
copy:
src: "{{ role_path }}/files/fzf.bash"
dest: ~/.fzf.bash