diff --git a/roles/_meta/common_base/meta/main.yml b/roles/_meta/common_base/meta/main.yml index 797ddeb67..38c92d945 100644 --- a/roles/_meta/common_base/meta/main.yml +++ b/roles/_meta/common_base/meta/main.yml @@ -47,3 +47,5 @@ dependencies: when: is_local is not defined or not is_local - role: debian/vim when: is_local is not defined or not is_local + - role: debian/bash + when: is_local is not defined or not is_local diff --git a/roles/debian/bash/README.md b/roles/debian/bash/README.md new file mode 100644 index 000000000..71f64b1f5 --- /dev/null +++ b/roles/debian/bash/README.md @@ -0,0 +1,9 @@ +# BASH options + +Set system options for the Bourne Again shell. + + + + + + diff --git a/roles/debian/bash/tasks/main.yml b/roles/debian/bash/tasks/main.yml new file mode 100644 index 000000000..9fbdc8f74 --- /dev/null +++ b/roles/debian/bash/tasks/main.yml @@ -0,0 +1,5 @@ +- name: Copy bash histformat startup option. + ansible.builtin.lineinfile: + path: /etc/bash.bashrc + line: "export HISTTIMEFORMAT='%Y-%m-%d %T '" + create: true