Update to 2022-03-28 12:00

This commit is contained in:
Daniel Berteaud 2022-03-28 12:00:09 +02:00
parent bc3fe1b0a7
commit a8ef3e771c
2 changed files with 25 additions and 2 deletions

View File

@ -78,8 +78,13 @@
creates: /var/lib/samba/private/tls/dhparam.pem
tags: samba
- name: Deploy smb.conf
template: src=smb.conf.j2 dest=/etc/samba/smb.conf
- name: Deploy samba configuration
template: src={{ item.src }} dest={{ item.dest }}
loop:
- src: smb.conf.j2
dest: /etc/samba/smb.conf
- src: sysconfig.j2
dest: /etc/sysconfig/samba
notify: reload samba
tags: samba

View File

@ -0,0 +1,18 @@
## Path: Network/Samba
## Description: Samba process options
## Type: string
## Default: ""
## ServiceRestart: samba
SAMBAOPTIONS="--log-basename=/var/log/samba"
## Type: string
## Default: ""
## ServiceRestart: smb
SMBDOPTIONS=""
## Type: string
## Default: ""
## ServiceRestart: nmb
NMBDOPTIONS=""
## Type: string
## Default: ""
## ServiceRestart: winbind
WINBINDOPTIONS=""