Giter VIP home page Giter VIP logo

Comments (3)

atomic-penguin avatar atomic-penguin commented on June 15, 2024

Looks to be a bug in #15. I believe the following change will fix this.

diff --git a/providers/export.rb b/providers/export.rb
index dcb065cd9891..ff3f7e0f888b 100644
--- a/providers/export.rb
+++ b/providers/export.rb
@@ -27,14 +27,10 @@ action :create do

     ro_rw = new_resource.writeable ? 'rw' : 'ro'
     sync_async = new_resource.sync ? 'sync' : 'async'
-    if new_resource.anonuser
-      new_resource.options << "anonuid=#{find_uid(new_resource.anonuser)}"
-    end
-    if new_resource.anongroup
-      new_resource.options << "anongid=#{find_gid(new_resource.anongroup)}"
-    end
     options = new_resource.options.join(',')
     options = ",#{options}" unless options.empty?
+    options << ",anonuid=#{find_uid(new_resource.anonuser)}" if new_resource.anonuser
+    options << ",anongid=#{find_gid(new_resource.anongroup)}" if new_resource.anongroup

     if new_resource.network.is_a?(Array)
       host_permissions = new_resource.network.map { |net| net + "(#{ro_rw},#{sync_async}#{options})" }

from nfs.

atomic-penguin avatar atomic-penguin commented on June 15, 2024

Thanks for reporting. I have pushed fb32702 to address this. I might not get a release out to the community site tonight, as I have pending issues to review before release.

from nfs.

atomic-penguin avatar atomic-penguin commented on June 15, 2024

Released and fixed in 2.1.0, forgot to put it in the CHANGELOG for release.

from nfs.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.