Skip to content

Commit

Permalink
fixes for ubuntu TO-246
Browse files Browse the repository at this point in the history
  • Loading branch information
layfield-ccdc committed Jun 18, 2024
1 parent ed7bb9c commit 089b72b
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion tasks/Ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@
state: present
become: true

- name: Disable autologin

Check notice on line 8 in tasks/Ubuntu.yml

View workflow job for this annotation

GitHub Actions / ansible-lint

[ansible-lint] tasks/Ubuntu.yml#L8

command-instead-of-module systemctl used in place of systemd module
Raw output
tasks/Ubuntu.yml:8: command-instead-of-module systemctl used in place of systemd module

Check notice on line 8 in tasks/Ubuntu.yml

View workflow job for this annotation

GitHub Actions / ansible-lint

[ansible-lint] tasks/Ubuntu.yml#L8

no-changed-when Commands should not change things if nothing needs doing
Raw output
tasks/Ubuntu.yml:8: no-changed-when Commands should not change things if nothing needs doing
ansible.builtin.command: systemctl disable gdm
become: true

- name: Ensure X11UseLocalhost is set to anybody
ansible.builtin.lineinfile:
path: /etc/X11/Xwrapper.config
Expand All @@ -17,4 +21,5 @@
ansible.builtin.service:
name: xrdp
state: restarted
enabled: true
enabled: true
become: true

0 comments on commit 089b72b

Please sign in to comment.