Добавил oh-my-bash конфигурацию

This commit is contained in:
2021-09-26 22:27:18 +00:00
parent 78d9f84b9b
commit f45c2318c4
7 changed files with 282 additions and 1 deletions

View File

@@ -26,6 +26,18 @@
msg: 'OMB is not installed, run: bash -c "$(curl -fsSL https://raw.githubusercontent.com/ohmybash/oh-my-bash/master/tools/install.sh)"'
when: not omb_flag.stat.exists
- name: Put simple bashrc config
template:
src: files/bashrc
dest: "{{ ansible_user_dir }}/.bashrc"
when: not omb_flag.stat.exists
- name: Put omb config
template:
src: files/omb-bashrc
dest: "{{ ansible_user_dir }}/.bashrc"
when: omb_flag.stat.exists
# FIXME: logout from shell
# - name: Install OMB
# shell: bash -c "$(curl -fsSL https://raw.githubusercontent.com/ohmybash/oh-my-bash/master/tools/install.sh)"