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