We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9592c98 commit 278831fCopy full SHA for 278831f
roles/_meta/common_base/meta/main.yml
@@ -47,3 +47,5 @@ dependencies:
47
when: is_local is not defined or not is_local
48
- role: debian/vim
49
50
+ - role: debian/bash
51
+ when: is_local is not defined or not is_local
roles/debian/bash/README.md
@@ -0,0 +1,9 @@
1
+# BASH options
2
+
3
+Set system options for the Bourne Again shell.
4
5
+<!--TOC-->
6
+<!--ENDTOC-->
7
8
+<!--ROLEVARS-->
9
+<!--ENDROLEVARS-->
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
0 commit comments