Standardize locale on all runs
This commit is contained in:
6
Makefile
6
Makefile
@@ -1,3 +1,9 @@
|
|||||||
|
# Make sure to standardize locale, regardless of the machine config
|
||||||
|
#
|
||||||
|
# Having a different locale broke "yes | pacman -S" to force-install
|
||||||
|
# iptables, for example
|
||||||
|
export LC_ALL = en_US.UTF-8
|
||||||
|
|
||||||
ansible_run = ansible-playbook --inventory localhost, --diff ./playbook.yml ${ANSIBLE_EXTRA_ARGS}
|
ansible_run = ansible-playbook --inventory localhost, --diff ./playbook.yml ${ANSIBLE_EXTRA_ARGS}
|
||||||
|
|
||||||
.PHONY: config
|
.PHONY: config
|
||||||
|
|||||||
@@ -8,6 +8,12 @@
|
|||||||
set -o errexit
|
set -o errexit
|
||||||
set -o nounset
|
set -o nounset
|
||||||
|
|
||||||
|
# Make sure to standardize locale, regardless of the machine config
|
||||||
|
#
|
||||||
|
# Having a different locale broke "yes | pacman -S" to force-install
|
||||||
|
# iptables, for example
|
||||||
|
export LC_ALL="en_US.UTF-8"
|
||||||
|
|
||||||
DOTDIR="/var/lib/dotfiles"
|
DOTDIR="/var/lib/dotfiles"
|
||||||
|
|
||||||
os_release_file=/etc/os-release
|
os_release_file=/etc/os-release
|
||||||
|
|||||||
Reference in New Issue
Block a user