Sha256: a275ec7e816ce38e22036e0c36ef45165e45babf08f5841c5a34170469e400e4

Contents?: true

Size: 591 Bytes

Versions: 828

Compression:

Stored size: 591 Bytes

Contents

class Puppet::Indirector::StoreConfigs < Puppet::Indirector::Terminus
  def initialize
    super
    # This will raise if the indirection can't be found, so we can assume it
    # is always set to a valid instance from here on in.
    @target = indirection.terminus Puppet[:storeconfigs_backend]
  end

  attr_reader :target

  def head(request)
    target.head request
  end

  def find(request)
    target.find request
  end

  def search(request)
    target.search request
  end

  def save(request)
    target.save request
  end

  def destroy(request)
    target.save request
  end
end

Version data entries

828 entries across 828 versions & 6 rubygems

Version Path
puppet-7.34.0 lib/puppet/indirector/store_configs.rb
puppet-7.34.0-x86-mingw32 lib/puppet/indirector/store_configs.rb
puppet-7.34.0-x64-mingw32 lib/puppet/indirector/store_configs.rb
puppet-7.34.0-universal-darwin lib/puppet/indirector/store_configs.rb
puppet-7.33.0 lib/puppet/indirector/store_configs.rb
puppet-7.33.0-x86-mingw32 lib/puppet/indirector/store_configs.rb
puppet-7.33.0-x64-mingw32 lib/puppet/indirector/store_configs.rb
puppet-7.33.0-universal-darwin lib/puppet/indirector/store_configs.rb
puppet-7.32.1 lib/puppet/indirector/store_configs.rb
puppet-7.32.1-x86-mingw32 lib/puppet/indirector/store_configs.rb
puppet-7.32.1-x64-mingw32 lib/puppet/indirector/store_configs.rb
puppet-7.32.1-universal-darwin lib/puppet/indirector/store_configs.rb
puppet-7.31.0 lib/puppet/indirector/store_configs.rb
puppet-7.31.0-x86-mingw32 lib/puppet/indirector/store_configs.rb
puppet-7.31.0-x64-mingw32 lib/puppet/indirector/store_configs.rb
puppet-7.31.0-universal-darwin lib/puppet/indirector/store_configs.rb
puppet-7.30.0 lib/puppet/indirector/store_configs.rb
puppet-7.30.0-x86-mingw32 lib/puppet/indirector/store_configs.rb
puppet-7.30.0-x64-mingw32 lib/puppet/indirector/store_configs.rb
puppet-7.30.0-universal-darwin lib/puppet/indirector/store_configs.rb