vagrant/plugins/hosts/suse/cap/nfs.rb

16 lines
281 B
Ruby
Raw Normal View History

2014-01-08 05:11:59 +00:00
module VagrantPlugins
module HostSUSE
2014-01-08 05:11:59 +00:00
module Cap
class NFS
def self.nfs_check_command(env)
2014-09-11 15:44:28 +00:00
"pidof nfsd > /dev/null"
2014-01-08 05:11:59 +00:00
end
def self.nfs_start_command(env)
"/sbin/service nfsserver start"
2014-01-08 05:11:59 +00:00
end
end
end
end
end