diff options
Diffstat (limited to 'plugins/puppet/parser/functions/sha1.rb')
-rw-r--r-- | plugins/puppet/parser/functions/sha1.rb | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/plugins/puppet/parser/functions/sha1.rb b/plugins/puppet/parser/functions/sha1.rb deleted file mode 100644 index b5aa813..0000000 --- a/plugins/puppet/parser/functions/sha1.rb +++ /dev/null @@ -1,9 +0,0 @@ -# return the sha1 hash -require 'digest/sha1' - -module Puppet::Parser::Functions - newfunction(:sha1, :type => :rvalue) do |args| - Digest::SHA1.hexdigest(args[0]) - end -end - |