toansible: Add bash installation

This commit is contained in:
flyingscorpio@clevo 2022-02-22 11:05:48 +01:00
parent 6fb0387ac6
commit f902fc122f
5 changed files with 25 additions and 14 deletions

View file

@ -24,20 +24,6 @@ grub:
sudo sed -i -E 's/^#?GRUB_DISABLE_SUBMENU.+/GRUB_DISABLE_SUBMENU=y/' /etc/default/grub &&
sudo grub-mkconfig -o /boot/grub/grub.cfg
bash:
- install:
- bash-completion
- run:
- content='. "$HOME"/setup-cockpit/dotfiles/bash/bash_profile'; grep "$content" "$HOME"/.bash_profile >/dev/null 2>&1 || echo "$content" >> "$HOME"/.bash_profile
- run:
- content='. "$HOME"/setup-cockpit/dotfiles/bash/bashrc'; grep "$content" "$HOME"/.bashrc >/dev/null 2>&1 || echo "$content" >> "$HOME"/.bashrc
- symlink:
- dotfiles/bash/inputrc
- ~/.inputrc
- clone:
- https://github.com/magicmonty/bash-git-prompt.git
- ~/.bash-git-prompt
git:
- install:
- git

25
roles/bash/tasks/main.yml Normal file
View file

@ -0,0 +1,25 @@
---
- name: Install bash-completion (Archlinux)
become: true
pacman:
name:
- bash-completion
when: ansible_distribution == 'Archlinux'
- name: Install bash-completion (Debian)
become: true
apt:
name:
- bash-completion
when: ansible_distribution == 'Debian'
- name: Copy files
copy: src={{ item.src }} dest={{ item.dest }} backup=true
with_items:
- { src: 'inputrc', dest: '~/.inputrc' }
- { src: 'bash_profile', dest: '~/.bash_profile' }
- { src: 'bashrc', dest: '~/.bashrc' }
- name: Clone bash-git-prompt
command: git clone https://github.com/magicmonty/bash-git-prompt.git ~/.bash-git-prompt