Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
buluma committed Jan 20, 2024
2 parents a6db5ee + 2ba3ce2 commit 79fb998
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 7 deletions.
20 changes: 14 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,20 @@
# Changelog

## [Unreleased](https://github.com/buluma/ansible-role-mount/tree/HEAD)
## [1.3.0](https://github.com/buluma/ansible-role-mount/tree/1.3.0) (2024-01-14)

[Full Changelog](https://github.com/buluma/ansible-role-mount/compare/1.1.0...HEAD)
[Full Changelog](https://github.com/buluma/ansible-role-mount/compare/1.2.0...1.3.0)

**Implemented enhancements:**

- Support CIFS [\#7](https://github.com/buluma/ansible-role-mount/issues/7)

**Merged pull requests:**

- Allow CIFS to mount [\#20](https://github.com/buluma/ansible-role-mount/pull/20) ([FrankGiesecke](https://github.com/FrankGiesecke))

## [1.2.0](https://github.com/buluma/ansible-role-mount/tree/1.2.0) (2024-01-11)

[Full Changelog](https://github.com/buluma/ansible-role-mount/compare/1.1.0...1.2.0)

**Merged pull requests:**

Expand All @@ -29,10 +41,6 @@

[Full Changelog](https://github.com/buluma/ansible-role-mount/compare/1.0.6...1.0.7)

**Implemented enhancements:**

- Support CIFS [\#7](https://github.com/buluma/ansible-role-mount/issues/7)

**Merged pull requests:**

- Allow CIFS to mount [\#8](https://github.com/buluma/ansible-role-mount/pull/8) ([FrankGiesecke](https://github.com/FrankGiesecke))
Expand Down
2 changes: 1 addition & 1 deletion tasks/assert.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
ansible.builtin.assert:
that:
- item.fstype is string
- item.fstype in [ "ext3", "ext4", "iso9660", "nfs", "none", "swap", "xfs" ]
- item.fstype in [ "cifs", "ext3", "ext4", "iso9660", "nfs", "none", "swap", "xfs" ]
quiet: yes
loop: "{{ mount_requests }}"
loop_control:
Expand Down

0 comments on commit 79fb998

Please sign in to comment.