Merge branch 'master' of git.9iron.club:salt/ansible
This commit is contained in:
commit
afd74edc65
@ -9,6 +9,16 @@
|
||||
password_lock: yes
|
||||
system: yes
|
||||
become: yes
|
||||
- name: Ensure perms on Ansible user home
|
||||
file:
|
||||
path: "/home/ansible"
|
||||
mode: "0700"
|
||||
- name: Ensure ownership of Ansible user home
|
||||
file:
|
||||
path: "/home/ansible"
|
||||
owner: ansible
|
||||
group: ansible
|
||||
recurse: yes
|
||||
- name: Add Ansible key to user
|
||||
authorized_key:
|
||||
user: ansible
|
||||
|
@ -17,6 +17,8 @@
|
||||
loop:
|
||||
# Works around a bug where this causes failed logins
|
||||
- "/etc/X11/Xsession.d/70im-config_launch"
|
||||
# Works around SDDM never actually sourcing a user's xsessionrc
|
||||
- "/etc/X11/Xsession.d/99x11-common_start"
|
||||
- name: Copy system configs
|
||||
template:
|
||||
src: "{{ item.src }}"
|
||||
|
Loading…
Reference in New Issue
Block a user