Sha256: b4726edf29d86e69ad667b4ef56a7f689a2d857b0c57e0a21a96362ffff92dc4

Contents?: true

Size: 929 Bytes

Versions: 6

Compression:

Stored size: 929 Bytes

Contents

module VagrantPlugins
  module Ventriloquist
    module Services
      class PostgreSQL < Service
        def provision(machine)
          super

          @machine = machine

          install_client
          install_headers
          export_host
        end

        protected

        def install_client
          if @machine.guest.capability?(:pg_install_client)
            @machine.guest.capability(:pg_install_client)
          else
            @machine.env.ui.warn 'Unable to install the PostgreSQL client'
          end
        end

        def install_headers
          if @machine.guest.capability?(:pg_install_headers)
            @machine.guest.capability(:pg_install_headers)
          else
            @machine.env.ui.warn 'Unable to install PostgreSQL header files'
          end
        end

        def export_host
          @machine.guest.capability(:pg_export_pghost)
        end
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
ventriloquist-0.3.2 lib/ventriloquist/services/postgresql.rb
ventriloquist-0.3.1 lib/ventriloquist/services/postgresql.rb
ventriloquist-0.3.0 lib/ventriloquist/services/postgresql.rb
ventriloquist-0.2.1 lib/ventriloquist/services/postgresql.rb
ventriloquist-0.2.0 lib/ventriloquist/services/postgresql.rb
ventriloquist-0.1.0 lib/ventriloquist/services/postgresql.rb