summaryrefslogtreecommitdiff
path: root/plugins/puppet/parser/functions
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2009-10-31 15:16:52 +0100
committermh <mh@immerda.ch>2009-10-31 15:16:52 +0100
commit2f2ed8909334758c2af28caa015a9219eac9aad7 (patch)
treec0695fdb264fc955d80afdddd00bfe1e6b5789c9 /plugins/puppet/parser/functions
parent12f134a56baef10ed2acaeaad203716ee0c7a785 (diff)
move plugin directory to fit new 0.25 style
Diffstat (limited to 'plugins/puppet/parser/functions')
-rw-r--r--plugins/puppet/parser/functions/mkpasswd.rb6
1 files changed, 0 insertions, 6 deletions
diff --git a/plugins/puppet/parser/functions/mkpasswd.rb b/plugins/puppet/parser/functions/mkpasswd.rb
deleted file mode 100644
index 645df9b..0000000
--- a/plugins/puppet/parser/functions/mkpasswd.rb
+++ /dev/null
@@ -1,6 +0,0 @@
-# needs an 8-char salt *always*
-module Puppet::Parser::Functions
- newfunction(:mkpasswd, :type => :rvalue) do |args|
- %x{/usr/bin/mkpasswd -H MD5 #{args[0]} #{args[1]}}.chomp
- end
-end