Documentation for v2.0.2
This commit is contained in:
parent
a42e9252d2
commit
a1e2480b6d
10
CHANGELOG.md
10
CHANGELOG.md
@ -4,6 +4,16 @@ This file contains al notable changes to the bertvv.samba Ansible role.
|
|||||||
|
|
||||||
This file adheres to the guidelines of [http://keepachangelog.com/](http://keepachangelog.com/). Versioning follows [Semantic Versioning](http://semver.org/). "GH-X" refers to the X'th issue on the Github project.
|
This file adheres to the guidelines of [http://keepachangelog.com/](http://keepachangelog.com/). Versioning follows [Semantic Versioning](http://semver.org/). "GH-X" refers to the X'th issue on the Github project.
|
||||||
|
|
||||||
|
## 2.0.2 - 2015-12-01
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- The directory `samba_shares_root` is now created befor creating the directories of the shares, with sane permissions set. This fixes GH-3. Contributed by @birgitcroux.
|
||||||
|
|
||||||
|
### Removed
|
||||||
|
|
||||||
|
- The role variables `create_mask` and `create_directory_mask` were removed. Samba settings `create mask` and `create directory mask` are synonyms for `create mode` and `create directory mode`, respectively. The former name is misleading, because it suggests they work like the Linux command `umask`.
|
||||||
|
|
||||||
## 2.0.1 - 2015-11-05
|
## 2.0.1 - 2015-11-05
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
@ -102,10 +102,8 @@ A complete overview of share options follows below. Only `name` is required, the
|
|||||||
| `valid_users` | - | Controls read access for registered users. Use the syntax of the corresponding Samba setting. |
|
| `valid_users` | - | Controls read access for registered users. Use the syntax of the corresponding Samba setting. |
|
||||||
| `write_list` | - | Controls write access for registered users. Use the syntax of the corresponding Samba setting. |
|
| `write_list` | - | Controls write access for registered users. Use the syntax of the corresponding Samba setting. |
|
||||||
| `group` | `users` | The user group files in the share will be added to. |
|
| `group` | `users` | The user group files in the share will be added to. |
|
||||||
| `create_mask` | `0664` | See the Samba documentation for details. |
|
|
||||||
| `create_mode` | `0664` | See the Samba documentation for details. |
|
| `create_mode` | `0664` | See the Samba documentation for details. |
|
||||||
| `force_create_mode` | `0664` | See the Samba documentation for details. |
|
| `force_create_mode` | `0664` | See the Samba documentation for details. |
|
||||||
| `directory_mask` | `0775` | See the Samba documentation for details. |
|
|
||||||
| `directory_mode` | `0775` | See the Samba documentation for details. |
|
| `directory_mode` | `0775` | See the Samba documentation for details. |
|
||||||
| `force_directory_mode` | `0775` | See the Samba documentation for details. |
|
| `force_directory_mode` | `0775` | See the Samba documentation for details. |
|
||||||
|
|
||||||
@ -152,3 +150,6 @@ BSD
|
|||||||
|
|
||||||
Bert Van Vreckem (bert.vanvreckem@gmail.com)
|
Bert Van Vreckem (bert.vanvreckem@gmail.com)
|
||||||
|
|
||||||
|
Contributions by:
|
||||||
|
|
||||||
|
- [@birgitcroux](https://github.com/birgitcroux)
|
||||||
|
@ -13,4 +13,4 @@ galaxy_info:
|
|||||||
- system
|
- system
|
||||||
- networking
|
- networking
|
||||||
dependencies: []
|
dependencies: []
|
||||||
version: 2.0.1
|
version: 2.0.2
|
||||||
|
Loading…
Reference in New Issue
Block a user