Änderungen Autoupdate für Desktop
This commit is contained in:
parent
ae71f87b98
commit
29a5b8841e
5 changed files with 58 additions and 1 deletions
|
@ -53,3 +53,29 @@
|
|||
- lmn_qgsddm
|
||||
#- lmn_printer
|
||||
#- kerberize
|
||||
|
||||
tasks:
|
||||
- name: Fix unattended-upgrades
|
||||
ansible.builtin.copy:
|
||||
dest: /etc/apt/apt.conf.d/20auto-upgrades
|
||||
content: |
|
||||
APT::Periodic::Update-Package-Lists "1";
|
||||
APT::Periodic::Unattended-Upgrade "1";
|
||||
|
||||
- name: Prepare mount point for homes
|
||||
ansible.builtin.file:
|
||||
path: /srv/samba/schools/default-school/
|
||||
state: directory
|
||||
mode: '0755'
|
||||
|
||||
|
||||
- name: Fix mount point permissions and owner
|
||||
file:
|
||||
path: "{{ item }}"
|
||||
mode: '0755'
|
||||
owner: root
|
||||
group: root
|
||||
loop:
|
||||
- /srv/samba
|
||||
- /srv/samba/schools
|
||||
- /srv/samba/schools/default-school
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue