summaryrefslogtreecommitdiffstats
path: root/spec
diff options
context:
space:
mode:
authorDaniel Pittman <daniel@puppetlabs.com>2011-08-18 11:27:41 -0700
committerDaniel Pittman <daniel@puppetlabs.com>2011-08-18 11:27:41 -0700
commitfd7332be5ca8ba78ff24a455fddad1713be779b5 (patch)
tree9320d21db5d781e8d8093112f9aea75a90a764db /spec
parent208b41e5dd3d5b9285759592acb25892b7c9ba89 (diff)
downloadpuppet-fd7332be5ca8ba78ff24a455fddad1713be779b5.tar.gz
puppet-fd7332be5ca8ba78ff24a455fddad1713be779b5.tar.xz
puppet-fd7332be5ca8ba78ff24a455fddad1713be779b5.zip
maint: remove inaccurate copyright and license statements.
For a while Luke, and other authors, injected a created tag, copyright statement, and "All rights reserved" into every new file they added to the Puppet project. This isn't really true, and we have a global license covering the code, so we have now stripped out all those old tags. Signed-off-by: Daniel Pittman <daniel@puppetlabs.com>
Diffstat (limited to 'spec')
-rwxr-xr-xspec/integration/file_serving/content_spec.rb4
-rwxr-xr-xspec/integration/file_serving/metadata_spec.rb4
-rwxr-xr-xspec/integration/indirector/direct_file_server_spec.rb4
-rwxr-xr-xspec/integration/indirector/file_content/file_server_spec.rb4
-rwxr-xr-xspec/integration/indirector/file_metadata/file_server_spec.rb4
-rwxr-xr-xspec/integration/node/facts_spec.rb4
-rwxr-xr-xspec/integration/node_spec.rb4
-rwxr-xr-xspec/integration/reports_spec.rb4
-rwxr-xr-xspec/integration/resource/catalog_spec.rb4
-rwxr-xr-xspec/integration/ssl/certificate_authority_spec.rb4
-rwxr-xr-xspec/integration/ssl/certificate_request_spec.rb4
-rwxr-xr-xspec/integration/ssl/certificate_revocation_list_spec.rb4
-rwxr-xr-xspec/integration/ssl/host_spec.rb4
-rwxr-xr-xspec/integration/transaction/report_spec.rb4
-rwxr-xr-xspec/shared_behaviours/file_server_terminus.rb4
-rwxr-xr-xspec/shared_behaviours/file_serving.rb4
-rwxr-xr-xspec/shared_behaviours/memory_terminus.rb4
-rwxr-xr-xspec/unit/agent_spec.rb4
-rwxr-xr-xspec/unit/configurer_spec.rb4
-rwxr-xr-xspec/unit/file_serving/indirection_hooks_spec.rb4
-rwxr-xr-xspec/unit/file_serving/terminus_helper_spec.rb4
-rwxr-xr-xspec/unit/indirector/catalog/compiler_spec.rb4
-rwxr-xr-xspec/unit/indirector/certificate/ca_spec.rb4
-rwxr-xr-xspec/unit/indirector/certificate/file_spec.rb4
-rwxr-xr-xspec/unit/indirector/certificate_request/ca_spec.rb4
-rwxr-xr-xspec/unit/indirector/certificate_request/file_spec.rb4
-rwxr-xr-xspec/unit/indirector/certificate_revocation_list/ca_spec.rb4
-rwxr-xr-xspec/unit/indirector/certificate_revocation_list/file_spec.rb4
-rwxr-xr-xspec/unit/indirector/direct_file_server_spec.rb4
-rwxr-xr-xspec/unit/indirector/facts/facter_spec.rb4
-rwxr-xr-xspec/unit/indirector/file_content/file_server_spec.rb4
-rwxr-xr-xspec/unit/indirector/file_content/file_spec.rb4
-rwxr-xr-xspec/unit/indirector/file_metadata/file_server_spec.rb4
-rwxr-xr-xspec/unit/indirector/file_metadata/file_spec.rb4
-rwxr-xr-xspec/unit/indirector/file_server_spec.rb4
-rwxr-xr-xspec/unit/indirector/key/ca_spec.rb4
-rwxr-xr-xspec/unit/indirector/key/file_spec.rb4
-rwxr-xr-xspec/unit/indirector/report/processor_spec.rb4
-rwxr-xr-xspec/unit/indirector/ssl_file_spec.rb4
-rwxr-xr-xspec/unit/network/client_spec.rb4
-rwxr-xr-xspec/unit/network/http/mongrel_spec.rb4
-rwxr-xr-xspec/unit/network/http/webrick_spec.rb4
-rwxr-xr-xspec/unit/network/http_pool_spec.rb4
-rwxr-xr-xspec/unit/network/http_spec.rb4
-rwxr-xr-xspec/unit/network/server_spec.rb4
-rwxr-xr-xspec/unit/provider/group/ldap_spec.rb4
-rwxr-xr-xspec/unit/provider/ldap_spec.rb4
-rwxr-xr-xspec/unit/provider/mount/parsed_spec.rb4
-rwxr-xr-xspec/unit/provider/user/ldap_spec.rb4
-rwxr-xr-xspec/unit/relationship_spec.rb4
-rwxr-xr-xspec/unit/simple_graph_spec.rb4
-rwxr-xr-xspec/unit/util/checksums_spec.rb4
-rwxr-xr-xspec/unit/util/constant_inflector_spec.rb4
-rwxr-xr-xspec/unit/util/ldap/connection_spec.rb4
-rwxr-xr-xspec/unit/util/ldap/generator_spec.rb4
-rwxr-xr-xspec/unit/util/ldap/manager_spec.rb4
-rwxr-xr-xspec/unit/util/nagios_maker_spec.rb4
-rwxr-xr-xspec/unit/util/tagging_spec.rb4
58 files changed, 0 insertions, 232 deletions
diff --git a/spec/integration/file_serving/content_spec.rb b/spec/integration/file_serving/content_spec.rb
index a95ddc520..5b08a6137 100755
--- a/spec/integration/file_serving/content_spec.rb
+++ b/spec/integration/file_serving/content_spec.rb
@@ -1,8 +1,4 @@
#!/usr/bin/env rspec
-#
-# Created by Luke Kanies on 2007-10-18.
-# Copyright (c) 2007. All rights reserved.
-
require 'spec_helper'
require 'puppet/file_serving/content'
diff --git a/spec/integration/file_serving/metadata_spec.rb b/spec/integration/file_serving/metadata_spec.rb
index ba7d3311f..821b6baca 100755
--- a/spec/integration/file_serving/metadata_spec.rb
+++ b/spec/integration/file_serving/metadata_spec.rb
@@ -1,8 +1,4 @@
#!/usr/bin/env rspec
-#
-# Created by Luke Kanies on 2007-10-18.
-# Copyright (c) 2007. All rights reserved.
-
require 'spec_helper'
require 'puppet/file_serving/metadata'
diff --git a/spec/integration/indirector/direct_file_server_spec.rb b/spec/integration/indirector/direct_file_server_spec.rb
index e53b48d69..98f0ebe17 100755
--- a/spec/integration/indirector/direct_file_server_spec.rb
+++ b/spec/integration/indirector/direct_file_server_spec.rb
@@ -1,8 +1,4 @@
#!/usr/bin/env rspec
-#
-# Created by Luke Kanies on 2007-10-19.
-# Copyright (c) 2007. All rights reserved.
-
require 'spec_helper'
require 'puppet/indirector/file_content/file'
diff --git a/spec/integration/indirector/file_content/file_server_spec.rb b/spec/integration/indirector/file_content/file_server_spec.rb
index 88d2345d8..787f1562d 100755
--- a/spec/integration/indirector/file_content/file_server_spec.rb
+++ b/spec/integration/indirector/file_content/file_server_spec.rb
@@ -1,8 +1,4 @@
#!/usr/bin/env rspec
-#
-# Created by Luke Kanies on 2007-10-18.
-# Copyright (c) 2007. All rights reserved.
-
require 'spec_helper'
require 'puppet/indirector/file_content/file_server'
diff --git a/spec/integration/indirector/file_metadata/file_server_spec.rb b/spec/integration/indirector/file_metadata/file_server_spec.rb
index 9e84134a6..c2cbcfa5c 100755
--- a/spec/integration/indirector/file_metadata/file_server_spec.rb
+++ b/spec/integration/indirector/file_metadata/file_server_spec.rb
@@ -1,8 +1,4 @@
#!/usr/bin/env rspec
-#
-# Created by Luke Kanies on 2007-10-18.
-# Copyright (c) 2007. All rights reserved.
-
require 'spec_helper'
require 'puppet/indirector/file_metadata/file_server'
diff --git a/spec/integration/node/facts_spec.rb b/spec/integration/node/facts_spec.rb
index e87a0bdeb..b2c71e42a 100755
--- a/spec/integration/node/facts_spec.rb
+++ b/spec/integration/node/facts_spec.rb
@@ -1,8 +1,4 @@
#!/usr/bin/env rspec
-#
-# Created by Luke Kanies on 2008-4-8.
-# Copyright (c) 2008. All rights reserved.
-
require 'spec_helper'
describe Puppet::Node::Facts do
diff --git a/spec/integration/node_spec.rb b/spec/integration/node_spec.rb
index b81a1fdc3..5abb880a3 100755
--- a/spec/integration/node_spec.rb
+++ b/spec/integration/node_spec.rb
@@ -1,8 +1,4 @@
#!/usr/bin/env rspec
-#
-# Created by Luke Kanies on 2007-9-23.
-# Copyright (c) 2007. All rights reserved.
-
require 'spec_helper'
require 'puppet/node'
diff --git a/spec/integration/reports_spec.rb b/spec/integration/reports_spec.rb
index d5a08d28a..17662c810 100755
--- a/spec/integration/reports_spec.rb
+++ b/spec/integration/reports_spec.rb
@@ -1,8 +1,4 @@
#!/usr/bin/env rspec
-#
-# Created by Luke Kanies on 2007-10-12.
-# Copyright (c) 2007. All rights reserved.
-
require 'spec_helper'
require 'puppet/reports'
diff --git a/spec/integration/resource/catalog_spec.rb b/spec/integration/resource/catalog_spec.rb
index 41a475d98..528e29545 100755
--- a/spec/integration/resource/catalog_spec.rb
+++ b/spec/integration/resource/catalog_spec.rb
@@ -1,8 +1,4 @@
#!/usr/bin/env rspec
-#
-# Created by Luke Kanies on 2007-4-8.
-# Copyright (c) 2008. All rights reserved.
-
require 'spec_helper'
describe Puppet::Resource::Catalog do
diff --git a/spec/integration/ssl/certificate_authority_spec.rb b/spec/integration/ssl/certificate_authority_spec.rb
index c5e145459..2517f121e 100755
--- a/spec/integration/ssl/certificate_authority_spec.rb
+++ b/spec/integration/ssl/certificate_authority_spec.rb
@@ -1,8 +1,4 @@
#!/usr/bin/env rspec
-#
-# Created by Luke Kanies on 2008-4-17.
-# Copyright (c) 2008. All rights reserved.
-
require 'spec_helper'
require 'puppet/ssl/certificate_authority'
diff --git a/spec/integration/ssl/certificate_request_spec.rb b/spec/integration/ssl/certificate_request_spec.rb
index 688466c37..4f3e98dc8 100755
--- a/spec/integration/ssl/certificate_request_spec.rb
+++ b/spec/integration/ssl/certificate_request_spec.rb
@@ -1,8 +1,4 @@
#!/usr/bin/env rspec
-#
-# Created by Luke Kanies on 2008-4-17.
-# Copyright (c) 2008. All rights reserved.
-
require 'spec_helper'
require 'puppet/ssl/certificate_request'
diff --git a/spec/integration/ssl/certificate_revocation_list_spec.rb b/spec/integration/ssl/certificate_revocation_list_spec.rb
index 051a81569..55e8f4ac7 100755
--- a/spec/integration/ssl/certificate_revocation_list_spec.rb
+++ b/spec/integration/ssl/certificate_revocation_list_spec.rb
@@ -1,8 +1,4 @@
#!/usr/bin/env rspec
-#
-# Created by Luke Kanies on 2008-5-5.
-# Copyright (c) 2008. All rights reserved.
-
require 'spec_helper'
require 'puppet/ssl/certificate_revocation_list'
diff --git a/spec/integration/ssl/host_spec.rb b/spec/integration/ssl/host_spec.rb
index e9c37c151..5aa3eebad 100755
--- a/spec/integration/ssl/host_spec.rb
+++ b/spec/integration/ssl/host_spec.rb
@@ -1,8 +1,4 @@
#!/usr/bin/env rspec
-#
-# Created by Luke Kanies on 2008-4-17.
-# Copyright (c) 2008. All rights reserved.
-
require 'spec_helper'
require 'puppet/ssl/host'
diff --git a/spec/integration/transaction/report_spec.rb b/spec/integration/transaction/report_spec.rb
index 183d93f76..031562ea1 100755
--- a/spec/integration/transaction/report_spec.rb
+++ b/spec/integration/transaction/report_spec.rb
@@ -1,8 +1,4 @@
#!/usr/bin/env rspec
-#
-# Created by Luke Kanies on 2008-4-8.
-# Copyright (c) 2008. All rights reserved.
-
require 'spec_helper'
describe Puppet::Transaction::Report do
diff --git a/spec/shared_behaviours/file_server_terminus.rb b/spec/shared_behaviours/file_server_terminus.rb
index f59169382..e300d9b4d 100755
--- a/spec/shared_behaviours/file_server_terminus.rb
+++ b/spec/shared_behaviours/file_server_terminus.rb
@@ -1,8 +1,4 @@
#!/usr/bin/env rspec
-#
-# Created by Luke Kanies on 2007-10-18.
-# Copyright (c) 2007. All rights reserved.
-
shared_examples_for "Puppet::Indirector::FileServerTerminus" do
# This only works if the shared behaviour is included before
# the 'before' block in the including context.
diff --git a/spec/shared_behaviours/file_serving.rb b/spec/shared_behaviours/file_serving.rb
index 3afab5b59..f5a59f5cd 100755
--- a/spec/shared_behaviours/file_serving.rb
+++ b/spec/shared_behaviours/file_serving.rb
@@ -1,8 +1,4 @@
#!/usr/bin/env rspec
-#
-# Created by Luke Kanies on 2007-10-18.
-# Copyright (c) 2007. All rights reserved.
-
shared_examples_for "Puppet::FileServing::Files" do
it "should use the rest terminus when the 'puppet' URI scheme is used and a host name is present" do
uri = "puppet://myhost/fakemod/my/file"
diff --git a/spec/shared_behaviours/memory_terminus.rb b/spec/shared_behaviours/memory_terminus.rb
index f9325a969..0d9017100 100755
--- a/spec/shared_behaviours/memory_terminus.rb
+++ b/spec/shared_behaviours/memory_terminus.rb
@@ -1,7 +1,3 @@
-#
-# Created by Luke Kanies on 2008-4-8.
-# Copyright (c) 2008. All rights reserved.
-
shared_examples_for "A Memory Terminus" do
it "should find no instances by default" do
@searcher.find(@request).should be_nil
diff --git a/spec/unit/agent_spec.rb b/spec/unit/agent_spec.rb
index bfa44f61c..d955868a0 100755
--- a/spec/unit/agent_spec.rb
+++ b/spec/unit/agent_spec.rb
@@ -1,8 +1,4 @@
#!/usr/bin/env rspec
-#
-# Created by Luke Kanies on 2007-11-12.
-# Copyright (c) 2007. All rights reserved.
-
require 'spec_helper'
require 'puppet/agent'
diff --git a/spec/unit/configurer_spec.rb b/spec/unit/configurer_spec.rb
index 588f1659b..c20c89e03 100755
--- a/spec/unit/configurer_spec.rb
+++ b/spec/unit/configurer_spec.rb
@@ -1,8 +1,4 @@
#!/usr/bin/env rspec
-#
-# Created by Luke Kanies on 2007-11-12.
-# Copyright (c) 2007. All rights reserved.
-
require 'spec_helper'
require 'puppet/configurer'
diff --git a/spec/unit/file_serving/indirection_hooks_spec.rb b/spec/unit/file_serving/indirection_hooks_spec.rb
index 4890505ab..526c49e0f 100755
--- a/spec/unit/file_serving/indirection_hooks_spec.rb
+++ b/spec/unit/file_serving/indirection_hooks_spec.rb
@@ -1,8 +1,4 @@
#!/usr/bin/env rspec
-#
-# Created by Luke Kanies on 2007-10-18.
-# Copyright (c) 2007. All rights reserved.
-
require 'spec_helper'
require 'puppet/file_serving/indirection_hooks'
diff --git a/spec/unit/file_serving/terminus_helper_spec.rb b/spec/unit/file_serving/terminus_helper_spec.rb
index 7efe3fb98..9fd27d9dc 100755
--- a/spec/unit/file_serving/terminus_helper_spec.rb
+++ b/spec/unit/file_serving/terminus_helper_spec.rb
@@ -1,8 +1,4 @@
#!/usr/bin/env rspec
-#
-# Created by Luke Kanies on 2007-10-22.
-# Copyright (c) 2007. All rights reserved.
-
require 'spec_helper'
require 'puppet/file_serving/terminus_helper'
diff --git a/spec/unit/indirector/catalog/compiler_spec.rb b/spec/unit/indirector/catalog/compiler_spec.rb
index cd84031e5..ea0e98e80 100755
--- a/spec/unit/indirector/catalog/compiler_spec.rb
+++ b/spec/unit/indirector/catalog/compiler_spec.rb
@@ -1,8 +1,4 @@
#!/usr/bin/env rspec
-#
-# Created by Luke Kanies on 2007-9-23.
-# Copyright (c) 2007. All rights reserved.
-
require 'spec_helper'
require 'puppet/indirector/catalog/compiler'
diff --git a/spec/unit/indirector/certificate/ca_spec.rb b/spec/unit/indirector/certificate/ca_spec.rb
index 277d2209d..25bd4dcbf 100755
--- a/spec/unit/indirector/certificate/ca_spec.rb
+++ b/spec/unit/indirector/certificate/ca_spec.rb
@@ -1,8 +1,4 @@
#!/usr/bin/env rspec
-#
-# Created by Luke Kanies on 2008-3-7.
-# Copyright (c) 2007. All rights reserved.
-
require 'spec_helper'
require 'puppet/indirector/certificate/ca'
diff --git a/spec/unit/indirector/certificate/file_spec.rb b/spec/unit/indirector/certificate/file_spec.rb
index f398e1115..67b83589e 100755
--- a/spec/unit/indirector/certificate/file_spec.rb
+++ b/spec/unit/indirector/certificate/file_spec.rb
@@ -1,8 +1,4 @@
#!/usr/bin/env rspec
-#
-# Created by Luke Kanies on 2008-3-7.
-# Copyright (c) 2007. All rights reserved.
-
require 'spec_helper'
require 'puppet/indirector/certificate/file'
diff --git a/spec/unit/indirector/certificate_request/ca_spec.rb b/spec/unit/indirector/certificate_request/ca_spec.rb
index ebd64a2fb..028bc94c6 100755
--- a/spec/unit/indirector/certificate_request/ca_spec.rb
+++ b/spec/unit/indirector/certificate_request/ca_spec.rb
@@ -1,8 +1,4 @@
#!/usr/bin/env rspec
-#
-# Created by Luke Kanies on 2008-3-7.
-# Copyright (c) 2007. All rights reserved.
-
require 'spec_helper'
require 'puppet/ssl/host'
diff --git a/spec/unit/indirector/certificate_request/file_spec.rb b/spec/unit/indirector/certificate_request/file_spec.rb
index 69dc5eb9c..654cd23f8 100755
--- a/spec/unit/indirector/certificate_request/file_spec.rb
+++ b/spec/unit/indirector/certificate_request/file_spec.rb
@@ -1,8 +1,4 @@
#!/usr/bin/env rspec
-#
-# Created by Luke Kanies on 2008-3-7.
-# Copyright (c) 2007. All rights reserved.
-
require 'spec_helper'
require 'puppet/indirector/certificate_request/file'
diff --git a/spec/unit/indirector/certificate_revocation_list/ca_spec.rb b/spec/unit/indirector/certificate_revocation_list/ca_spec.rb
index d76373b97..005b5aa1d 100755
--- a/spec/unit/indirector/certificate_revocation_list/ca_spec.rb
+++ b/spec/unit/indirector/certificate_revocation_list/ca_spec.rb
@@ -1,8 +1,4 @@
#!/usr/bin/env rspec
-#
-# Created by Luke Kanies on 2008-3-7.
-# Copyright (c) 2007. All rights reserved.
-
require 'spec_helper'
require 'puppet/indirector/certificate_revocation_list/ca'
diff --git a/spec/unit/indirector/certificate_revocation_list/file_spec.rb b/spec/unit/indirector/certificate_revocation_list/file_spec.rb
index f4b8c36d3..380290079 100755
--- a/spec/unit/indirector/certificate_revocation_list/file_spec.rb
+++ b/spec/unit/indirector/certificate_revocation_list/file_spec.rb
@@ -1,8 +1,4 @@
#!/usr/bin/env rspec
-#
-# Created by Luke Kanies on 2008-3-7.
-# Copyright (c) 2007. All rights reserved.
-
require 'spec_helper'
require 'puppet/indirector/certificate_revocation_list/file'
diff --git a/spec/unit/indirector/direct_file_server_spec.rb b/spec/unit/indirector/direct_file_server_spec.rb
index abd7172b7..87380438a 100755
--- a/spec/unit/indirector/direct_file_server_spec.rb
+++ b/spec/unit/indirector/direct_file_server_spec.rb
@@ -1,8 +1,4 @@
#!/usr/bin/env rspec
-#
-# Created by Luke Kanies on 2007-10-24.
-# Copyright (c) 2007. All rights reserved.
-
require 'spec_helper'
require 'puppet/indirector/direct_file_server'
diff --git a/spec/unit/indirector/facts/facter_spec.rb b/spec/unit/indirector/facts/facter_spec.rb
index 9f5a0249b..3b1574e52 100755
--- a/spec/unit/indirector/facts/facter_spec.rb
+++ b/spec/unit/indirector/facts/facter_spec.rb
@@ -1,8 +1,4 @@
#!/usr/bin/env rspec
-#
-# Created by Luke Kanies on 2007-9-23.
-# Copyright (c) 2007. All rights reserved.
-
require 'spec_helper'
require 'puppet/indirector/facts/facter'
diff --git a/spec/unit/indirector/file_content/file_server_spec.rb b/spec/unit/indirector/file_content/file_server_spec.rb
index 99a535dc3..6b09216d7 100755
--- a/spec/unit/indirector/file_content/file_server_spec.rb
+++ b/spec/unit/indirector/file_content/file_server_spec.rb
@@ -1,8 +1,4 @@
#!/usr/bin/env rspec
-#
-# Created by Luke Kanies on 2007-10-18.
-# Copyright (c) 2007. All rights reserved.
-
require 'spec_helper'
require 'puppet/indirector/file_content/file_server'
diff --git a/spec/unit/indirector/file_content/file_spec.rb b/spec/unit/indirector/file_content/file_spec.rb
index b629981c5..d1c6dc738 100755
--- a/spec/unit/indirector/file_content/file_spec.rb
+++ b/spec/unit/indirector/file_content/file_spec.rb
@@ -1,8 +1,4 @@
#!/usr/bin/env rspec
-#
-# Created by Luke Kanies on 2007-10-18.
-# Copyright (c) 2007. All rights reserved.
-
require 'spec_helper'
require 'puppet/indirector/file_content/file'
diff --git a/spec/unit/indirector/file_metadata/file_server_spec.rb b/spec/unit/indirector/file_metadata/file_server_spec.rb
index e16829035..14177d702 100755
--- a/spec/unit/indirector/file_metadata/file_server_spec.rb
+++ b/spec/unit/indirector/file_metadata/file_server_spec.rb
@@ -1,8 +1,4 @@
#!/usr/bin/env rspec
-#
-# Created by Luke Kanies on 2007-10-18.
-# Copyright (c) 2007. All rights reserved.
-
require 'spec_helper'
require 'puppet/indirector/file_metadata/file_server'
diff --git a/spec/unit/indirector/file_metadata/file_spec.rb b/spec/unit/indirector/file_metadata/file_spec.rb
index 28a974290..9df53384b 100755
--- a/spec/unit/indirector/file_metadata/file_spec.rb
+++ b/spec/unit/indirector/file_metadata/file_spec.rb
@@ -1,8 +1,4 @@
#!/usr/bin/env rspec
-#
-# Created by Luke Kanies on 2007-10-18.
-# Copyright (c) 2007. All rights reserved.
-
require 'spec_helper'
require 'puppet/indirector/file_metadata/file'
diff --git a/spec/unit/indirector/file_server_spec.rb b/spec/unit/indirector/file_server_spec.rb
index 6df715fb1..b0227772b 100755
--- a/spec/unit/indirector/file_server_spec.rb
+++ b/spec/unit/indirector/file_server_spec.rb
@@ -1,8 +1,4 @@
#!/usr/bin/env rspec
-#
-# Created by Luke Kanies on 2007-10-19.
-# Copyright (c) 2007. All rights reserved.
-
require 'spec_helper'
require 'puppet/indirector/file_server'
diff --git a/spec/unit/indirector/key/ca_spec.rb b/spec/unit/indirector/key/ca_spec.rb
index ba3d1aae2..990adc975 100755
--- a/spec/unit/indirector/key/ca_spec.rb
+++ b/spec/unit/indirector/key/ca_spec.rb
@@ -1,8 +1,4 @@
#!/usr/bin/env rspec
-#
-# Created by Luke Kanies on 2008-3-7.
-# Copyright (c) 2007. All rights reserved.
-
require 'spec_helper'
require 'puppet/indirector/key/ca'
diff --git a/spec/unit/indirector/key/file_spec.rb b/spec/unit/indirector/key/file_spec.rb
index bf9b293d8..f9abb958f 100755
--- a/spec/unit/indirector/key/file_spec.rb
+++ b/spec/unit/indirector/key/file_spec.rb
@@ -1,8 +1,4 @@
#!/usr/bin/env rspec
-#
-# Created by Luke Kanies on 2008-3-7.
-# Copyright (c) 2007. All rights reserved.
-
require 'spec_helper'
require 'puppet/indirector/key/file'
diff --git a/spec/unit/indirector/report/processor_spec.rb b/spec/unit/indirector/report/processor_spec.rb
index c64cc7eff..6184cb9b5 100755
--- a/spec/unit/indirector/report/processor_spec.rb
+++ b/spec/unit/indirector/report/processor_spec.rb
@@ -1,8 +1,4 @@
#!/usr/bin/env rspec
-#
-# Created by Luke Kanies on 2007-9-23.
-# Copyright (c) 2007. All rights reserved.
-
require 'spec_helper'
require 'puppet/indirector/report/processor'
diff --git a/spec/unit/indirector/ssl_file_spec.rb b/spec/unit/indirector/ssl_file_spec.rb
index 5d0859598..ae188317f 100755
--- a/spec/unit/indirector/ssl_file_spec.rb
+++ b/spec/unit/indirector/ssl_file_spec.rb
@@ -1,8 +1,4 @@
#!/usr/bin/env rspec
-#
-# Created by Luke Kanies on 2008-3-10.
-# Copyright (c) 2007. All rights reserved.
-
require 'spec_helper'
require 'puppet/indirector/ssl_file'
diff --git a/spec/unit/network/client_spec.rb b/spec/unit/network/client_spec.rb
index 102a053c0..861f33033 100755
--- a/spec/unit/network/client_spec.rb
+++ b/spec/unit/network/client_spec.rb
@@ -1,8 +1,4 @@
#!/usr/bin/env rspec
-#
-# Created by Luke Kanies on 2008-3-24.
-# Copyright (c) 2008. All rights reserved.
-
require 'spec_helper'
require 'puppet/network/client'
diff --git a/spec/unit/network/http/mongrel_spec.rb b/spec/unit/network/http/mongrel_spec.rb
index 6776fad61..9e7e9c485 100755
--- a/spec/unit/network/http/mongrel_spec.rb
+++ b/spec/unit/network/http/mongrel_spec.rb
@@ -1,8 +1,4 @@
#!/usr/bin/env rspec
-#
-# Created by Rick Bradley on 2007-10-15.
-# Copyright (c) 2007. All rights reserved.
-
require 'spec_helper'
require 'puppet/network/http'
diff --git a/spec/unit/network/http/webrick_spec.rb b/spec/unit/network/http/webrick_spec.rb
index be74a1052..72660efda 100755
--- a/spec/unit/network/http/webrick_spec.rb
+++ b/spec/unit/network/http/webrick_spec.rb
@@ -1,8 +1,4 @@
#!/usr/bin/env rspec
-#
-# Created by Rick Bradley on 2007-10-15.
-# Copyright (c) 2007. All rights reserved.
-
require 'spec_helper'
require 'puppet/network/handler'
require 'puppet/network/http'
diff --git a/spec/unit/network/http_pool_spec.rb b/spec/unit/network/http_pool_spec.rb
index c5d3e0470..41105ece9 100755
--- a/spec/unit/network/http_pool_spec.rb
+++ b/spec/unit/network/http_pool_spec.rb
@@ -1,8 +1,4 @@
#!/usr/bin/env rspec
-#
-# Created by Luke Kanies on 2007-11-26.
-# Copyright (c) 2007. All rights reserved.
-
require 'spec_helper'
require 'puppet/network/http_pool'
diff --git a/spec/unit/network/http_spec.rb b/spec/unit/network/http_spec.rb
index 550c15bf7..3f807a50b 100755
--- a/spec/unit/network/http_spec.rb
+++ b/spec/unit/network/http_spec.rb
@@ -1,8 +1,4 @@
#!/usr/bin/env rspec
-#
-# Created by Rick Bradley on 2007-10-03.
-# Copyright (c) 2007. All rights reserved.
-
require 'spec_helper'
require 'puppet/network/http'
diff --git a/spec/unit/network/server_spec.rb b/spec/unit/network/server_spec.rb
index 912275a20..b38e82b93 100755
--- a/spec/unit/network/server_spec.rb
+++ b/spec/unit/network/server_spec.rb
@@ -1,8 +1,4 @@
#!/usr/bin/env rspec
-#
-# Created by Rick Bradley on 2007-10-03.
-# Copyright (c) 2007. All rights reserved.
-
require 'spec_helper'
require 'puppet/network/server'
require 'puppet/network/handler'
diff --git a/spec/unit/provider/group/ldap_spec.rb b/spec/unit/provider/group/ldap_spec.rb
index 947007f10..28a57e0ee 100755
--- a/spec/unit/provider/group/ldap_spec.rb
+++ b/spec/unit/provider/group/ldap_spec.rb
@@ -1,8 +1,4 @@
#!/usr/bin/env rspec
-#
-# Created by Luke Kanies on 2008-3-10.
-# Copyright (c) 2006. All rights reserved.
-
require 'spec_helper'
provider_class = Puppet::Type.type(:group).provider(:ldap)
diff --git a/spec/unit/provider/ldap_spec.rb b/spec/unit/provider/ldap_spec.rb
index 012a22b99..913e81fb9 100755
--- a/spec/unit/provider/ldap_spec.rb
+++ b/spec/unit/provider/ldap_spec.rb
@@ -1,8 +1,4 @@
#!/usr/bin/env rspec
-#
-# Created by Luke Kanies on 2008-3-21.
-# Copyright (c) 2006. All rights reserved.
-
require 'spec_helper'
require 'puppet/provider/ldap'
diff --git a/spec/unit/provider/mount/parsed_spec.rb b/spec/unit/provider/mount/parsed_spec.rb
index 7831dae3a..e812e3359 100755
--- a/spec/unit/provider/mount/parsed_spec.rb
+++ b/spec/unit/provider/mount/parsed_spec.rb
@@ -1,8 +1,4 @@
#!/usr/bin/env rspec
-#
-# Created by Luke Kanies on 2007-9-12.
-# Copyright (c) 2006. All rights reserved.
-
require 'spec_helper'
require 'shared_behaviours/all_parsedfile_providers'
diff --git a/spec/unit/provider/user/ldap_spec.rb b/spec/unit/provider/user/ldap_spec.rb
index 065b3b423..8888d85ed 100755
--- a/spec/unit/provider/user/ldap_spec.rb
+++ b/spec/unit/provider/user/ldap_spec.rb
@@ -1,8 +1,4 @@
#!/usr/bin/env rspec
-#
-# Created by Luke Kanies on 2008-3-10.
-# Copyright (c) 2006. All rights reserved.
-
require 'spec_helper'
provider_class = Puppet::Type.type(:user).provider(:ldap)
diff --git a/spec/unit/relationship_spec.rb b/spec/unit/relationship_spec.rb
index a7e787b46..1a748beff 100755
--- a/spec/unit/relationship_spec.rb
+++ b/spec/unit/relationship_spec.rb
@@ -1,8 +1,4 @@
#!/usr/bin/env rspec
-#
-# Created by Luke Kanies on 2007-11-1.
-# Copyright (c) 2006. All rights reserved.
-
require 'spec_helper'
require 'puppet/relationship'
diff --git a/spec/unit/simple_graph_spec.rb b/spec/unit/simple_graph_spec.rb
index 17e382fcc..8a39c782c 100755
--- a/spec/unit/simple_graph_spec.rb
+++ b/spec/unit/simple_graph_spec.rb
@@ -1,8 +1,4 @@
#!/usr/bin/env rspec
-#
-# Created by Luke Kanies on 2007-11-1.
-# Copyright (c) 2006. All rights reserved.
-
require 'spec_helper'
require 'puppet/simple_graph'
diff --git a/spec/unit/util/checksums_spec.rb b/spec/unit/util/checksums_spec.rb
index 146544201..f8800b512 100755
--- a/spec/unit/util/checksums_spec.rb
+++ b/spec/unit/util/checksums_spec.rb
@@ -1,8 +1,4 @@
#!/usr/bin/env rspec
-#
-# Created by Luke Kanies on 2007-9-22.
-# Copyright (c) 2007. All rights reserved.
-
require 'spec_helper'
require 'puppet/util/checksums'
diff --git a/spec/unit/util/constant_inflector_spec.rb b/spec/unit/util/constant_inflector_spec.rb
index cf2e8f892..88c1d9aa3 100755
--- a/spec/unit/util/constant_inflector_spec.rb
+++ b/spec/unit/util/constant_inflector_spec.rb
@@ -1,8 +1,4 @@
#!/usr/bin/env rspec
-#
-# Created by Luke Kanies on 2008-02-12.
-# Copyright (c) 2007. All rights reserved.
-
require 'spec_helper'
require 'puppet/util/constant_inflector'
diff --git a/spec/unit/util/ldap/connection_spec.rb b/spec/unit/util/ldap/connection_spec.rb
index f97c72d77..f02ea10cb 100755
--- a/spec/unit/util/ldap/connection_spec.rb
+++ b/spec/unit/util/ldap/connection_spec.rb
@@ -1,8 +1,4 @@
#!/usr/bin/env rspec
-#
-# Created by Luke Kanies on 2008-3-19.
-# Copyright (c) 2006. All rights reserved.
-
require 'spec_helper'
require 'puppet/util/ldap/connection'
diff --git a/spec/unit/util/ldap/generator_spec.rb b/spec/unit/util/ldap/generator_spec.rb
index b3e664d6b..51285e233 100755
--- a/spec/unit/util/ldap/generator_spec.rb
+++ b/spec/unit/util/ldap/generator_spec.rb
@@ -1,8 +1,4 @@
#!/usr/bin/env rspec
-#
-# Created by Luke Kanies on 2008-3-28.
-# Copyright (c) 2008. All rights reserved.
-
require 'spec_helper'
require 'puppet/util/ldap/generator'
diff --git a/spec/unit/util/ldap/manager_spec.rb b/spec/unit/util/ldap/manager_spec.rb
index 5cce626b5..16c6b0601 100755
--- a/spec/unit/util/ldap/manager_spec.rb
+++ b/spec/unit/util/ldap/manager_spec.rb
@@ -1,8 +1,4 @@
#!/usr/bin/env rspec
-#
-# Created by Luke Kanies on 2008-3-19.
-# Copyright (c) 2006. All rights reserved.
-
require 'spec_helper'
require 'puppet/util/ldap/manager'
diff --git a/spec/unit/util/nagios_maker_spec.rb b/spec/unit/util/nagios_maker_spec.rb
index b61f4fe9d..9cd038ff3 100755
--- a/spec/unit/util/nagios_maker_spec.rb
+++ b/spec/unit/util/nagios_maker_spec.rb
@@ -1,8 +1,4 @@
#!/usr/bin/env rspec
-#
-# Created by Luke Kanies on 2007-11-18.
-# Copyright (c) 2007. All rights reserved.
-
require 'spec_helper'
require 'puppet/util/nagios_maker'
diff --git a/spec/unit/util/tagging_spec.rb b/spec/unit/util/tagging_spec.rb
index 018871bef..1e5abdadd 100755
--- a/spec/unit/util/tagging_spec.rb
+++ b/spec/unit/util/tagging_spec.rb
@@ -1,8 +1,4 @@
#!/usr/bin/env rspec
-#
-# Created by Luke Kanies on 2008-01-19.
-# Copyright (c) 2007. All rights reserved.
-
require 'spec_helper'
require 'puppet/util/tagging'