summaryrefslogtreecommitdiff
path: root/plugins/puppet/parser/functions/mkpasswd.rb
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/puppet/parser/functions/mkpasswd.rb')
-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