Author: Robert Kaussow <mail@geeklabor.de>
Date:   Sun Jan 26 00:09:27 2020 +0100

    initial commit
This commit is contained in:
Robert Kaussow 2020-01-25 23:14:22 +00:00
parent 1d315d9a0b
commit a7fa0ff228
1 changed files with 56 additions and 0 deletions

56
index.md Normal file
View File

@ -0,0 +1,56 @@
---
title: smb
type: docs
---
[![Build Status](https://drone.rknet.org/api/badges/ansible/xoxys.smb/status.svg)](https://drone.rknet.org/ansible/xoxys.smb) [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE) [![Source Code](https://img.shields.io/badge/Git-Source%20code-blue?logo=git)](https://gitea.rknet.org/ansible/xoxys.smb)
Mount a list of smb shares.
* [Default Variables](#default-variables)
* [smb_packages](#smb-packages)
* [smb_shares](#smb-shares)
* [Dependencies](#dependencies)
---
## Default Variables
### smb_packages
#### Default value
```YAML
smb_packages:
- cifs-utils
```
### smb_shares
Add mount defined samba shares. You can specify samba credentials with username/password parameter. Credentials will be used in a credentials file and saved to `/root/.smbcredentials/` and not in the fstab directly.
#### Default value
```YAML
smb_shares: []
```
#### Example usage
```YAML
smb_shares:
- name: multimedia
source: //share.example.com/media
username: myuser
password: secure
mountpoint: /media/data
mountopts:
- acl
- uid=1000
- gid=1000
state: mounted
```
## Dependencies
None.