From 7cc8370ab5e3428c24f37b7259331b10038b6acb Mon Sep 17 00:00:00 2001 From: Emil Renner Berthing Date: Tue, 2 Oct 2018 22:26:17 +0200 Subject: jumbotron: add role to set up jumbotron rpi --- roles/jumbotron/tasks/autologin.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 roles/jumbotron/tasks/autologin.yml (limited to 'roles/jumbotron/tasks/autologin.yml') diff --git a/roles/jumbotron/tasks/autologin.yml b/roles/jumbotron/tasks/autologin.yml new file mode 100644 index 0000000..f9052ba --- /dev/null +++ b/roles/jumbotron/tasks/autologin.yml @@ -0,0 +1,32 @@ +--- +- name: Make sure getty@tty1.service.d exists + file: + path: '/etc/systemd/system/getty@tty1.service.d' + state: directory + owner: root + group: root + mode: 0755 + +- name: Register existing getty@tty1 config + find: + paths: '/etc/systemd/system/getty@tty1.service.d/' + register: getty_tty1_existing + +- name: Autologin jumbotron on tty1 + copy: + dest: '/etc/systemd/system/getty@tty1.service.d/' + src: '{{ item }}' + owner: root + group: root + mode: 0644 + with_fileglob: 'getty@tty1.service.d/*' + register: getty_tty1_created + +- name: Delete unneeded tty1 configuration + file: + path: '{{ item }}' + state: absent + with_items: "{{ getty_tty1_existing.files|map(attribute='path')|list }}" + when: "item not in getty_tty1_created.results|map(attribute='dest')" + +# vim: set ts=2 sw=2 et: -- cgit v1.2.1