From 92952ebe235ae8e28e3d8d6548f94acb7bd52a63 Mon Sep 17 00:00:00 2001 From: "Shadow Walker [GH bot]" Date: Thu, 11 Jan 2024 12:32:24 +0000 Subject: [PATCH 01/10] Updated CHANGELOG.md on "2024-01-11 12:32:24" --- CHANGELOG.md | 77 ---------------------------------------------------- 1 file changed, 77 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 70956d7..3b42514 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,82 +1,5 @@ # Changelog -## [Unreleased](https://github.com/buluma/ansible-role-mount/tree/HEAD) - -[Full Changelog](https://github.com/buluma/ansible-role-mount/compare/1.1.0...HEAD) - -**Merged pull requests:** - -- Bump actions/checkout from 3 to 4 [\#17](https://github.com/buluma/ansible-role-mount/pull/17) ([dependabot[bot]](https://github.com/apps/dependabot)) - -## [1.1.0](https://github.com/buluma/ansible-role-mount/tree/1.1.0) (2024-01-02) - -[Full Changelog](https://github.com/buluma/ansible-role-mount/compare/1.0.8...1.1.0) - -**Closed issues:** - -- Update buluma/todo-to-issue-action@v1.0.1 @buluma [\#16](https://github.com/buluma/ansible-role-mount/issues/16) - -## [1.0.8](https://github.com/buluma/ansible-role-mount/tree/1.0.8) (2023-12-25) - -[Full Changelog](https://github.com/buluma/ansible-role-mount/compare/1.0.7...1.0.8) - -**Closed issues:** - -- Update buluma/todo-to-issue-action@v1.0.1 @buluma [\#13](https://github.com/buluma/ansible-role-mount/issues/13) -- Update action [\#12](https://github.com/buluma/ansible-role-mount/issues/12) - -## [1.0.7](https://github.com/buluma/ansible-role-mount/tree/1.0.7) (2023-03-12) - -[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)) - -## [1.0.6](https://github.com/buluma/ansible-role-mount/tree/1.0.6) (2022-05-13) - -[Full Changelog](https://github.com/buluma/ansible-role-mount/compare/1.0.5...1.0.6) - -**Merged pull requests:** - -- Bump buluma/gh-action-auto-merge-dependabot-updates from 1.0.4 to 1.0.5 [\#4](https://github.com/buluma/ansible-role-mount/pull/4) ([dependabot[bot]](https://github.com/apps/dependabot)) - -## [1.0.5](https://github.com/buluma/ansible-role-mount/tree/1.0.5) (2022-03-28) - -[Full Changelog](https://github.com/buluma/ansible-role-mount/compare/1.0.4...1.0.5) - -**Merged pull requests:** - -- Bump buluma/gh-action-auto-merge-dependabot-updates from 1.0.3 to 1.0.4 [\#3](https://github.com/buluma/ansible-role-mount/pull/3) ([dependabot[bot]](https://github.com/apps/dependabot)) - -## [1.0.4](https://github.com/buluma/ansible-role-mount/tree/1.0.4) (2022-03-20) - -[Full Changelog](https://github.com/buluma/ansible-role-mount/compare/1.0.3...1.0.4) - -## [1.0.3](https://github.com/buluma/ansible-role-mount/tree/1.0.3) (2022-03-03) - -[Full Changelog](https://github.com/buluma/ansible-role-mount/compare/1.0.2...1.0.3) - -## [1.0.2](https://github.com/buluma/ansible-role-mount/tree/1.0.2) (2022-02-12) - -[Full Changelog](https://github.com/buluma/ansible-role-mount/compare/1.0.1...1.0.2) - -**Closed issues:** - -- Test Opensuse [\#1](https://github.com/buluma/ansible-role-mount/issues/1) - -## [1.0.1](https://github.com/buluma/ansible-role-mount/tree/1.0.1) (2022-02-06) - -[Full Changelog](https://github.com/buluma/ansible-role-mount/compare/1.0.0...1.0.1) - -## [1.0.0](https://github.com/buluma/ansible-role-mount/tree/1.0.0) (2022-02-01) - -[Full Changelog](https://github.com/buluma/ansible-role-mount/compare/00b2ac6b8d24f30bdba0b2e4219bda1c3b0f2616...1.0.0) - \* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)* From e7aabf15cff3248dbf2809d489e1afa20f829026 Mon Sep 17 00:00:00 2001 From: Frank Giesecke Date: Thu, 11 Jan 2024 13:35:43 +0100 Subject: [PATCH 02/10] Allow CIFS to mount --- tasks/assert.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/assert.yml b/tasks/assert.yml index 6dbdf06..23de1d4 100644 --- a/tasks/assert.yml +++ b/tasks/assert.yml @@ -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: From fe3cb59914240a8990e380774824a6589630bc78 Mon Sep 17 00:00:00 2001 From: "Shadow Walker [GH bot]" Date: Thu, 11 Jan 2024 12:36:56 +0000 Subject: [PATCH 03/10] Updated CHANGELOG.md on "2024-01-11 12:36:56" --- CHANGELOG.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 70956d7..b9f0089 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -29,10 +29,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)) From 8720583a32a71eb58e8a5dde69ef4a5a21d921bf Mon Sep 17 00:00:00 2001 From: Michael Buluma Date: Sat, 13 Jan 2024 11:06:04 +0300 Subject: [PATCH 04/10] Fixes #7 Support CIFS --- tasks/assert.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/assert.yml b/tasks/assert.yml index 6dbdf06..99f27dd 100644 --- a/tasks/assert.yml +++ b/tasks/assert.yml @@ -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: From 71139ab7cc5d4d6a654f4f764a4adba8a83c29ae Mon Sep 17 00:00:00 2001 From: "Shadow Walker [GH bot]" Date: Sat, 13 Jan 2024 08:06:30 +0000 Subject: [PATCH 05/10] Updated CHANGELOG.md on "2024-01-13 08:06:30" --- CHANGELOG.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b9f0089..6e36695 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,15 @@ ## [Unreleased](https://github.com/buluma/ansible-role-mount/tree/HEAD) -[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...HEAD) + +**Implemented enhancements:** + +- Support CIFS [\#7](https://github.com/buluma/ansible-role-mount/issues/7) + +## [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:** From f481f910b3593f72e3d51f09d737ea45047b2ab7 Mon Sep 17 00:00:00 2001 From: "Shadow Walker [GH bot]" Date: Sun, 14 Jan 2024 07:39:36 +0000 Subject: [PATCH 06/10] Updated CHANGELOG.md on "2024-01-14 07:39:36" --- CHANGELOG.md | 8 -------- 1 file changed, 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6e36695..ec1795b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,13 +1,5 @@ # Changelog -## [Unreleased](https://github.com/buluma/ansible-role-mount/tree/HEAD) - -[Full Changelog](https://github.com/buluma/ansible-role-mount/compare/1.2.0...HEAD) - -**Implemented enhancements:** - -- Support CIFS [\#7](https://github.com/buluma/ansible-role-mount/issues/7) - ## [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) From 334b81e167a5fefa6cee9dddcc0a6d564e13f6f6 Mon Sep 17 00:00:00 2001 From: "Shadow Walker [GH bot]" Date: Sun, 14 Jan 2024 07:49:58 +0000 Subject: [PATCH 07/10] Updated CHANGELOG.md on "2024-01-14 07:49:58" --- CHANGELOG.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index dc9c46b..4aafc84 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [Unreleased](https://github.com/buluma/ansible-role-mount/tree/HEAD) + +[Full Changelog](https://github.com/buluma/ansible-role-mount/compare/1.2.0...HEAD) + +**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) @@ -74,4 +86,5 @@ [Full Changelog](https://github.com/buluma/ansible-role-mount/compare/00b2ac6b8d24f30bdba0b2e4219bda1c3b0f2616...1.0.0) + \* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)* From c924cdc247ca2c78ce80dcc0dcee750836a6fde6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Jan 2024 05:37:41 +0000 Subject: [PATCH 08/10] Bump buluma/molecule-action from 6.0.0 to 6.0.1 Bumps [buluma/molecule-action](https://github.com/buluma/molecule-action) from 6.0.0 to 6.0.1. - [Release notes](https://github.com/buluma/molecule-action/releases) - [Commits](https://github.com/buluma/molecule-action/compare/v6.0.0...v6.0.1) --- updated-dependencies: - dependency-name: buluma/molecule-action dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/molecule.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/molecule.yml b/.github/workflows/molecule.yml index 317cc66..e0cd906 100644 --- a/.github/workflows/molecule.yml +++ b/.github/workflows/molecule.yml @@ -77,7 +77,7 @@ jobs: with: path: "${{ github.repository }}" - name: Running Molecule Test - uses: buluma/molecule-action@v6.0.0 + uses: buluma/molecule-action@v6.0.1 with: image: ${{ matrix.config.image }} tag: ${{ matrix.config.tag }} From 3b535d2cead7429c5527f0e8d06d83c7aad3e69c Mon Sep 17 00:00:00 2001 From: "Shadow Walker [GH bot]" Date: Mon, 15 Jan 2024 05:57:27 +0000 Subject: [PATCH 09/10] Updated CHANGELOG.md on "2024-01-15 05:57:27" --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4aafc84..b450388 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,8 @@ # 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.2.0...HEAD) +[Full Changelog](https://github.com/buluma/ansible-role-mount/compare/1.2.0...1.3.0) **Implemented enhancements:** From 8200800af04e38e998ad14473684791ce3fa10b2 Mon Sep 17 00:00:00 2001 From: "Shadow Walker [GH bot]" Date: Mon, 15 Jan 2024 06:05:23 +0000 Subject: [PATCH 10/10] Updated CHANGELOG.md on "2024-01-15 06:05:23" --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4aafc84..b450388 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,8 @@ # 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.2.0...HEAD) +[Full Changelog](https://github.com/buluma/ansible-role-mount/compare/1.2.0...1.3.0) **Implemented enhancements:**