49 lines
1.1 KiB
YAML
49 lines
1.1 KiB
YAML
|
---
|
||
|
- import_tasks: vim.yml
|
||
|
|
||
|
- name: Copy shell configuration
|
||
|
ansible.builtin.copy:
|
||
|
src: inputrc
|
||
|
dest: "{{ item }}/.inputrc"
|
||
|
loop:
|
||
|
- /etc/skel
|
||
|
- /root
|
||
|
- "{{ ansible_env.HOME }}/"
|
||
|
|
||
|
- name: Copy bash aliases
|
||
|
ansible.builtin.copy:
|
||
|
src: bash_aliases
|
||
|
dest: "{{ item }}/.bash_aliases"
|
||
|
loop:
|
||
|
- /etc/skel
|
||
|
- /root
|
||
|
- "{{ ansible_env.HOME }}/"
|
||
|
|
||
|
- name: Add root bashrc shell history configuration
|
||
|
lineinfile:
|
||
|
path: /root/.bashrc
|
||
|
regexp: '^(export )?HISTCONTROL='
|
||
|
line: 'HISTCONTROL=ignoreboth'
|
||
|
state: present
|
||
|
|
||
|
- name: Add root bashrc and vim configuration for RedHat
|
||
|
lineinfile:
|
||
|
path: /root/.bashrc
|
||
|
regexp: "{{ item.regexp }}"
|
||
|
line: "{{ item.line }}"
|
||
|
state: present
|
||
|
with_items:
|
||
|
- regexp: '^(export )?VISUAL='
|
||
|
line: 'export VISUAL=vim'
|
||
|
- regexp: '^(export )?EDITOR='
|
||
|
line: 'export EDITOR=vim'
|
||
|
- regexp: '^(export )?SUDO_EDITOR='
|
||
|
line: 'export SUDO_EDITOR=vim'
|
||
|
|
||
|
- name: Add functional alias to restart a service and show the log
|
||
|
blockinfile:
|
||
|
path: /root/.bashrc
|
||
|
block: |
|
||
|
pheonix() {
|
||
|
systemctl restart $1;journalctl -fu $1
|
||
|
}
|