summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorluke <luke@980ebf18-57e1-0310-9a29-db15c13687c0>2005-11-23 19:18:34 +0000
committerluke <luke@980ebf18-57e1-0310-9a29-db15c13687c0>2005-11-23 19:18:34 +0000
commita03b03f08f304a5fe4598b95a55edd58a4ab2b17 (patch)
treed82f4210eccc6614765cea984bdd38bc3463efdd /lib
parent2a5bbd0e9a2262bc27981e988d99a003dd3648ad (diff)
downloadpuppet-a03b03f08f304a5fe4598b95a55edd58a4ab2b17.tar.gz
puppet-a03b03f08f304a5fe4598b95a55edd58a4ab2b17.tar.xz
puppet-a03b03f08f304a5fe4598b95a55edd58a4ab2b17.zip
removing ruby shebang at the top of all of the files
git-svn-id: https://reductivelabs.com/svn/puppet/trunk@755 980ebf18-57e1-0310-9a29-db15c13687c0
Diffstat (limited to 'lib')
-rw-r--r--lib/puppet/parser/lexer.rb5
-rwxr-xr-xlib/puppet/server/authstore.rb7
-rwxr-xr-xlib/puppet/server/filebucket.rb6
-rwxr-xr-xlib/puppet/sslcertificates.rb11
-rw-r--r--lib/puppet/type/component.rb5
-rw-r--r--lib/puppet/type/pprocess.rb2
-rwxr-xr-xlib/puppet/type/symlink.rb5
-rwxr-xr-xlib/puppet/type/tidy.rb5
-rw-r--r--lib/puppet/type/typegen.rb5
-rw-r--r--lib/puppet/type/typegen/filerecord.rb5
-rw-r--r--lib/puppet/type/typegen/filetype.rb5
11 files changed, 22 insertions, 39 deletions
diff --git a/lib/puppet/parser/lexer.rb b/lib/puppet/parser/lexer.rb
index 2918d3947..36a69b174 100644
--- a/lib/puppet/parser/lexer.rb
+++ b/lib/puppet/parser/lexer.rb
@@ -1,6 +1,3 @@
-#!/usr/local/bin/ruby -w
-
-# $Id$
# the scanner/lexer
@@ -224,3 +221,5 @@ module Puppet
#---------------------------------------------------------------
end
end
+
+# $Id$
diff --git a/lib/puppet/server/authstore.rb b/lib/puppet/server/authstore.rb
index 9c8f700dc..e3a9a1974 100755
--- a/lib/puppet/server/authstore.rb
+++ b/lib/puppet/server/authstore.rb
@@ -1,10 +1,5 @@
-#!/usr/bin/ruby -w
-
-#--------------------
# standard module for determining whether a given hostname or IP has access to
# the requested resource
-#
-# $Id$
require 'ipaddr'
@@ -225,3 +220,5 @@ class Server
end
end
end
+#
+# $Id$
diff --git a/lib/puppet/server/filebucket.rb b/lib/puppet/server/filebucket.rb
index 38993362e..b211379f1 100755
--- a/lib/puppet/server/filebucket.rb
+++ b/lib/puppet/server/filebucket.rb
@@ -1,9 +1,5 @@
-#!/usr/bin/ruby -w
-
#--------------------
# accept and serve files
-#
-# $Id$
require 'webrick'
@@ -145,3 +141,5 @@ class Server
end
end
end
+#
+# $Id$
diff --git a/lib/puppet/sslcertificates.rb b/lib/puppet/sslcertificates.rb
index 6dcd25656..d543c5200 100755
--- a/lib/puppet/sslcertificates.rb
+++ b/lib/puppet/sslcertificates.rb
@@ -1,10 +1,4 @@
-#!/usr/bin/ruby -w
-
-#--------------------
-# the puppet client
-#
-# $Id$
-
+# The library for manipulating SSL certs.
require 'puppet'
require 'openssl'
@@ -735,3 +729,6 @@ module SSLCertificates
end
end
end
+
+#
+# $Id$
diff --git a/lib/puppet/type/component.rb b/lib/puppet/type/component.rb
index 6e4438ab3..c7b553b22 100644
--- a/lib/puppet/type/component.rb
+++ b/lib/puppet/type/component.rb
@@ -1,6 +1,3 @@
-#!/usr/local/bin/ruby -w
-
-# $Id$
# the object allowing us to build complex structures
# this thing contains everything else, including itself
@@ -139,3 +136,5 @@ module Puppet
end
end
end
+
+# $Id$
diff --git a/lib/puppet/type/pprocess.rb b/lib/puppet/type/pprocess.rb
index b0b1a21d7..c2038987f 100644
--- a/lib/puppet/type/pprocess.rb
+++ b/lib/puppet/type/pprocess.rb
@@ -1,5 +1,3 @@
-#!/usr/local/bin/ruby -w
-
# DISABLED
# I'm only working on services, not processes, right now
diff --git a/lib/puppet/type/symlink.rb b/lib/puppet/type/symlink.rb
index eb8250e79..c1ac27b8b 100755
--- a/lib/puppet/type/symlink.rb
+++ b/lib/puppet/type/symlink.rb
@@ -1,6 +1,3 @@
-#!/usr/local/bin/ruby -w
-
-# $Id$
require 'etc'
require 'puppet/type/state'
@@ -181,3 +178,5 @@ module Puppet
end # Puppet::Type::Symlink
end # Puppet::Type
end
+
+# $Id$
diff --git a/lib/puppet/type/tidy.rb b/lib/puppet/type/tidy.rb
index 5c324944c..f91eaa754 100755
--- a/lib/puppet/type/tidy.rb
+++ b/lib/puppet/type/tidy.rb
@@ -1,6 +1,3 @@
-#!/usr/local/bin/ruby -w
-
-# $Id$
require 'etc'
require 'puppet/type/state'
@@ -181,3 +178,5 @@ module Puppet
end # Puppet::Type::Symlink
end # Puppet::Type
end
+
+# $Id$
diff --git a/lib/puppet/type/typegen.rb b/lib/puppet/type/typegen.rb
index 9855ae99a..46008bcb3 100644
--- a/lib/puppet/type/typegen.rb
+++ b/lib/puppet/type/typegen.rb
@@ -1,6 +1,3 @@
-#!/usr/local/bin/ruby -w
-
-# $Id$
# parse and write configuration files using objects with minimal parsing abilities
@@ -147,3 +144,5 @@ end
#---------------------------------------------------------------
end
end
+
+# $Id$
diff --git a/lib/puppet/type/typegen/filerecord.rb b/lib/puppet/type/typegen/filerecord.rb
index 419ca166c..6cf80f588 100644
--- a/lib/puppet/type/typegen/filerecord.rb
+++ b/lib/puppet/type/typegen/filerecord.rb
@@ -1,6 +1,3 @@
-#!/usr/local/bin/ruby -w
-
-# $Id$
# parse and write configuration files using objects with minimal parsing abilities
@@ -241,3 +238,5 @@ class Puppet::Type::FileRecord < Puppet::Type::TypeGenerator
#---------------------------------------------------------------
end
#---------------------------------------------------------------
+
+# $Id$
diff --git a/lib/puppet/type/typegen/filetype.rb b/lib/puppet/type/typegen/filetype.rb
index ed0b93fbf..22424c36d 100644
--- a/lib/puppet/type/typegen/filetype.rb
+++ b/lib/puppet/type/typegen/filetype.rb
@@ -1,6 +1,3 @@
-#!/usr/local/bin/ruby -w
-
-# $Id$
# parse and write configuration files using objects with minimal parsing abilities
@@ -314,3 +311,5 @@ class Puppet::Type::FileType < Puppet::Type::TypeGenerator
#---------------------------------------------------------------
end
#---------------------------------------------------------------
+
+# $Id$