From 5fcdbbf58ca4f7c185c15a6aaea5a2195dfaad3b Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Mon, 27 May 2019 21:51:50 +0100 Subject: [PATCH] Move locale and timezone things from boot.yml --- tasks/boot.yml | 8 -------- tasks/input.yml | 4 ++++ tasks/ntp.yml | 4 ++++ 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/tasks/boot.yml b/tasks/boot.yml index fae79b5..1a31c80 100644 --- a/tasks/boot.yml +++ b/tasks/boot.yml @@ -29,11 +29,3 @@ option: greeter-session value: lightdm-slick-greeter mode: 0644 - -- name: Enable GB locale - locale_gen: - name: en_GB.UTF-8 - -- name: Set timezone - timezone: - name: Europe/London diff --git a/tasks/input.yml b/tasks/input.yml index a9d77ab..eaaec07 100644 --- a/tasks/input.yml +++ b/tasks/input.yml @@ -39,3 +39,7 @@ dest: '{{ home }}/.config/uniemoji/custom.json' mode: 0644 owner: "{{ user }}" + +- name: Enable GB locale + locale_gen: + name: en_GB.UTF-8 diff --git a/tasks/ntp.yml b/tasks/ntp.yml index a579eb3..00fbff5 100644 --- a/tasks/ntp.yml +++ b/tasks/ntp.yml @@ -8,6 +8,10 @@ with_items: - ntp +- name: Set timezone + timezone: + name: Europe/London + - name: Enable NTP service systemd: name: "ntpd"