NFS, zfs, samba and docker

This commit is contained in:
git
2024-02-13 13:04:02 +01:00
parent ec0a0774a7
commit 77dffb383d
67 changed files with 831 additions and 30 deletions

View File

@@ -0,0 +1,22 @@
---
# tasks file for samba_install
- name: Install
ansible.builtin.package:
name:
- samba
state: present
- name: Start and enabled
ansible.builtin.service:
name: smbd
state: started
enabled: true
- name: Copy config
template:
src: ../templates/smb.conf
dest: /etc/samba/smb.conf
owner: root
group: root
mode: '0644'
notify: smb restart