# File lib/chef/provider/group/suse.rb, line 33
        def define_resource_requirements
          super
          requirements.assert(:all_actions) do |a| 
            a.assertion { ::File.exists?("/usr/sbin/groupmod") } 
            a.failure_message Chef::Exceptions::Group, "Could not find binary /usr/sbin/groupmod for #{@new_resource.name}"
            # No whyrun alternative: this component should be available in the base install of any given system that uses it
          end
        end