# File lib/chef/provider/package/zypper.rb, line 88
        def install_package(name, version)
          if version
            run_command(
              :command => "zypper -n --no-gpg-checks install -l  #{name}=#{version}"
            )
          else
            run_command(
              :command => "zypper -n --no-gpg-checks install -l  #{name}"
            )
          end
        end