Sha256: 207fad42c7715a76182d256e5489874e2790885bb1f51ef78a42c87612eaa3d3

Contents?: true

Size: 1.21 KB

Versions: 40

Compression:

Stored size: 1.21 KB

Contents

require "vagrant/util/subprocess"
require "vagrant/util/which"

module VagrantPlugins
  module HostALT
    module Cap
      class NFS
        def self.nfs_check_command(env)
          if systemd?
            return "systemctl status --no-pager nfs-server.service"
          else
            return "/etc/init.d/nfs status"
          end
        end

        def self.nfs_start_command(env)
          if systemd?
            return "systemctl start rpcbind nfs-server.service"
          else
            return "/etc/init.d/nfs restart"
          end
        end

        def self.nfs_installed(environment)
          if systemd?
            system("systemctl --no-pager --no-legend --plain list-unit-files --all --type=service | grep --fixed-strings --quiet nfs-server.service")
          else
            system("rpm -q nfs-server --quiet 2>&1")
          end
        end

        protected

        # This tests to see if systemd is used on the system. This is used
        # in newer versions of ALT, and requires a change in behavior.
        def self.systemd?
          result = Vagrant::Util::Subprocess.execute("ps", "-o", "comm=", "1")
          return result.stdout.chomp == "systemd"
        end
      end
    end
  end
end

Version data entries

40 entries across 36 versions & 5 rubygems

Version Path
vagrant-unbundled-2.3.6.0 plugins/hosts/alt/cap/nfs.rb
tamtam-vagrant-reload-1.2.1 vendor/cache/vagrant-2092df529ae7/plugins/hosts/alt/cap/nfs.rb
vagrant-unbundled-2.3.3.0 plugins/hosts/alt/cap/nfs.rb
vagrant-unbundled-2.3.2.0 plugins/hosts/alt/cap/nfs.rb
vagrant-unbundled-2.2.19.0 plugins/hosts/alt/cap/nfs.rb
vagrant-unbundled-2.2.18.0 plugins/hosts/alt/cap/nfs.rb
vagrant-unbundled-2.2.16.0 plugins/hosts/alt/cap/nfs.rb
vagrant-unbundled-2.2.14.0 plugins/hosts/alt/cap/nfs.rb
vagrant-aws-mkubenka-0.7.2.pre.24 vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-22795b161bf6/plugins/hosts/alt/cap/nfs.rb
vagrant-unbundled-2.2.10.0 plugins/hosts/alt/cap/nfs.rb
vagrant-unbundled-2.2.9.0 plugins/hosts/alt/cap/nfs.rb
vagrant-unbundled-2.2.8.0 plugins/hosts/alt/cap/nfs.rb
vagrant-unbundled-2.2.7.0 plugins/hosts/alt/cap/nfs.rb
vagrant-unbundled-2.2.6.2 plugins/hosts/alt/cap/nfs.rb
vagrant-unbundled-2.2.6.1 plugins/hosts/alt/cap/nfs.rb
vagrant-unbundled-2.2.6.0 plugins/hosts/alt/cap/nfs.rb
vagrant-unbundled-2.2.5.0 plugins/hosts/alt/cap/nfs.rb
vagrant-unbundled-2.2.4.0 plugins/hosts/alt/cap/nfs.rb
vagrant-unbundled-2.2.3.0 plugins/hosts/alt/cap/nfs.rb
vagrant-unbundled-2.2.2.0 plugins/hosts/alt/cap/nfs.rb