Sha256: 33441231288a11c6731bfaa5628fd752db4bf89ffe37d1841599dba8553a44b9

Contents?: true

Size: 595 Bytes

Versions: 39

Compression:

Stored size: 595 Bytes

Contents

#! /usr/bin/env ruby
require 'spec_helper'
require 'puppet_spec/files'
require 'puppet_spec/compiler'

describe Puppet::Type.type(:sshkey), '(integration)', :unless => Puppet.features.microsoft_windows? do
  include PuppetSpec::Files
  include PuppetSpec::Compiler

  let(:target) { tmpfile('ssh_known_hosts') }
  let(:manifest) { "sshkey { 'test':
    ensure => 'present',
    type => 'rsa',
    key => 'TESTKEY',
    target => '#{target}' }"
  }

  it "should create a new known_hosts file with mode 0644" do
    apply_compiled_manifest(manifest)
    expect_file_mode(target, "644")
  end
end

Version data entries

39 entries across 39 versions & 1 rubygems

Version Path
puppet-3.8.7 spec/integration/type/sshkey_spec.rb
puppet-3.8.7-x86-mingw32 spec/integration/type/sshkey_spec.rb
puppet-3.8.7-x64-mingw32 spec/integration/type/sshkey_spec.rb
puppet-3.8.6 spec/integration/type/sshkey_spec.rb
puppet-3.8.6-x86-mingw32 spec/integration/type/sshkey_spec.rb
puppet-3.8.6-x64-mingw32 spec/integration/type/sshkey_spec.rb
puppet-3.8.5 spec/integration/type/sshkey_spec.rb
puppet-3.8.5-x86-mingw32 spec/integration/type/sshkey_spec.rb
puppet-3.8.5-x64-mingw32 spec/integration/type/sshkey_spec.rb
puppet-3.8.4 spec/integration/type/sshkey_spec.rb
puppet-3.8.4-x86-mingw32 spec/integration/type/sshkey_spec.rb
puppet-3.8.4-x64-mingw32 spec/integration/type/sshkey_spec.rb
puppet-3.8.3 spec/integration/type/sshkey_spec.rb
puppet-3.8.3-x86-mingw32 spec/integration/type/sshkey_spec.rb
puppet-3.8.3-x64-mingw32 spec/integration/type/sshkey_spec.rb
puppet-3.8.2 spec/integration/type/sshkey_spec.rb
puppet-3.8.2-x86-mingw32 spec/integration/type/sshkey_spec.rb
puppet-3.8.2-x64-mingw32 spec/integration/type/sshkey_spec.rb
puppet-3.8.1 spec/integration/type/sshkey_spec.rb
puppet-3.8.1-x86-mingw32 spec/integration/type/sshkey_spec.rb