Skip to content

Instantly share code, notes, and snippets.

@c33s
Forked from pschyska/0_pw_hash.rb
Last active November 27, 2015 11:19
Show Gist options
  • Select an option

  • Save c33s/e0a0d2f9848f0c752bfe to your computer and use it in GitHub Desktop.

Select an option

Save c33s/e0a0d2f9848f0c752bfe to your computer and use it in GitHub Desktop.
PW hashing with puppet parser function
# lib/puppet/parser/functions/pw_hash.rb
module Puppet::Parser::Functions
newfunction(:pw_hash, type: :rvalue) do |args|
raise Puppet::ParseError, "pw_hash takes exactly two arguments, #{args.length} provided" if args.length != 2
# SHA512 ($6), default number of rounds (5000)
# rounds could be specified by prepending rounds=<n>$ parameter before the salt, i.e.
# args[0].crypt("$6$rounds=50000$#{args[1]}")
args[0].crypt("$6$#{args[1]}")
end
end
user { 'root':
ensure => present,
password => pw_hash($root_pw, $root_salt),
}
$pass='password'
$salt='salt'
user{
"alise":
ensure => present,
password => inline_template("<%= '$pass'.crypt('\$6$$salt') %>"),
}
user { 'user':
ensure => present,
password => pw_hash('password', 'SHA-512', 'mysalt'),
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment