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

20 lines
460 B
Ruby

module VagrantPlugins
module HostArch
module Cap
class NFS
def self.nfs_check_command(env)
return "/usr/sbin/systemctl status --no-pager nfs-server.service"
end
def self.nfs_start_command(env)
return "/usr/sbin/systemctl start nfs-server.service"
end
def self.nfs_installed(environment)
Kernel.system("grep -Fq nfsd /proc/filesystems")
end
end
end
end
end