diff options
author | Kane York <kanepyork@gmail.com> | 2020-06-10T21·57-0700 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2020-06-11T21·13+0000 |
commit | 6d4cae9359a0027430830890c18157c89b582f4e (patch) | |
tree | 3cac35c78210928db2504d2f034b24642f446044 /ops/nixos/modules/tvl-slapd/genpasswd.rb | |
parent | 35df1b94fca201a7b780c2c897a034b84b5ed49e (diff) |
chore(ops/nixos/modules): Add riking to slapd r/902
Diffstat (limited to 'ops/nixos/modules/tvl-slapd/genpasswd.rb')
-rw-r--r-- | ops/nixos/modules/tvl-slapd/genpasswd.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ops/nixos/modules/tvl-slapd/genpasswd.rb b/ops/nixos/modules/tvl-slapd/genpasswd.rb new file mode 100644 index 000000000000..8f6f8d75842e --- /dev/null +++ b/ops/nixos/modules/tvl-slapd/genpasswd.rb @@ -0,0 +1,5 @@ +require 'securerandom' + +passwd = SecureRandom.urlsafe_base64(15) + +puts "your password: [[#{passwd}]]" |