Merge branch 'dev' into master #40

Merged
jdubois merged 26 commits from dev into master 2021-12-17 16:27:00 +01:00
4 changed files with 16 additions and 1 deletions
Showing only changes of commit 798a87b0ff - Show all commits

View file

@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [7.0.0] - 2021-12-09
### Changed
- Configure locale to en_US.UTF-8 in .profile file so that "git log" displays the accents correctly
- Use vim as default git editor
## [6.9.2] - 2021-10-15
### Added

View file

@ -1,4 +1,4 @@
# EvoBSD 6.9.2
# EvoBSD 7.0.0
EvoBSD is an ansible project used for customising OpenBSD hosts
used by Evolix.

View file

@ -4,6 +4,8 @@
PATH="{{ evobsd_path }}"
export PATH HOME TERM
export LANG="en_US.UTF-8"
export LC_ALL="en_US.UTF-8"
export PS1="\u@\h:\w\\$ "
HISTFILE=$HOME/.histfile
export HISTSIZE=10000

View file

@ -44,6 +44,12 @@
tags:
- etc-git
- name: Set vim as default editor
git_config:
name: core.editor
scope: global
value: vim
- name: does /etc/ have any commit?
command: "git log"
args: