1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-02-15 04:32:11 +00:00

Merge pull request #3178 from holta/samba-client_to_smbclient

Install apt pkg 'smbclient' instead of virtual pkg 'samba-client' (in samba/tasks/install.yml)
This commit is contained in:
A Holt 2022-04-14 11:50:35 -04:00 committed by GitHub
commit e142ca6af0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -13,12 +13,13 @@
state: directory
# Install and configure samba server (requires ports 137, 138, 139, 445 open).
- name: "Install 4 packages: samba, samba-client, samba-common, cifs-client"
- name: "Install 4 packages: samba, samba-common, smbclient, cifs-client"
package:
name:
- samba
- samba-client
#- samba-client # 2022-04-13: Virtual package fails to install w/ ansible-core 2.13.0b0
- samba-common
- smbclient
- cifs-utils
state: present