summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--plugins/puppet/parser/functions/mkpassword.rb7
1 files changed, 0 insertions, 7 deletions
diff --git a/plugins/puppet/parser/functions/mkpassword.rb b/plugins/puppet/parser/functions/mkpassword.rb
deleted file mode 100644
index c7ba8c0..0000000
--- a/plugins/puppet/parser/functions/mkpassword.rb
+++ /dev/null
@@ -1,7 +0,0 @@
-## mkpasswd("password", "12345678")
-## 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