Sha256: e17dd0bbd6f2745822a86f41bdd5ec2c3c267fddbf7bab7835ca50bff45f0185

Contents?: true

Size: 398 Bytes

Versions: 1

Compression:

Stored size: 398 Bytes

Contents

module VagrantPlugins
  module GuestSUSE
    module Cap
      class NFSClient
        def self.nfs_client_install(machine)
          machine.communicate.tap do |comm|
            comm.sudo("zypper -n install nfs-client")

            comm.sudo("/sbin/service rpcbind restart")
            comm.sudo("/sbin/service nfs restart")
          end
        end
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
vagrant-cloudstack-1.2.0 vendor/bundle/bundler/gems/vagrant-c84e05fd063f/plugins/guests/suse/cap/nfs_client.rb