34 lines
934 B
YAML
34 lines
934 B
YAML
---
|
|
- name: Check if ~/.bashrc exists
|
|
stat:
|
|
path: '{{ "~" + user | expanduser }}/.bashrc'
|
|
register: bashrc
|
|
|
|
# Comment out ~/.bashrc HIST stuff
|
|
# So it obeys /etc/profile.d/bash_history.sh instead
|
|
- name: Commenting out ~/.bashrc HIST stuff
|
|
lineinfile:
|
|
path: '{{ "~" + user | expanduser }}/.bashrc'
|
|
regexp: '^HISTCONTROL=ignoreboth'
|
|
line: '# HISTCONTROL=ignoreboth'
|
|
when: bashrc.stat.exists == true
|
|
|
|
- name: Commenting out ~/.bashrc HIST stuff
|
|
lineinfile:
|
|
path: '{{ "~" + user | expanduser }}/.bashrc'
|
|
regexp: '^HISTSIZE=1000'
|
|
line: '# HISTSIZE=1000'
|
|
when: bashrc.stat.exists == true
|
|
|
|
- name: Commenting out ~/.bashrc HIST stuff
|
|
lineinfile:
|
|
path: '{{ "~" + user | expanduser }}/.bashrc'
|
|
regexp: '^HISTFILESIZE=2000'
|
|
line: '# HISTFILESIZE=2000'
|
|
when: bashrc.stat.exists == true
|
|
|
|
# Debian has these by default in ~/.bashrc
|
|
#HISTCONTROL=ignoreboth
|
|
#HISTSIZE=1000
|
|
#HISTFILESIZE=2000
|