diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-06-15 15:56:55 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-06-15 15:56:55 -0400 |
commit | 6a91ec075c8a89559c0957c096a99b96b4a58ca1 (patch) | |
tree | aa77e38ea24b2f043f86c24af5403c8fe6bf78d7 /bin/uid-map | |
parent | a99143e86220f93afb6ba93c6ac7b4ef65dc2920 (diff) |
common.rb#load_all_users: return a map of uid=>info, instead of an array of infos
Diffstat (limited to 'bin/uid-map')
-rwxr-xr-x | bin/uid-map | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/bin/uid-map b/bin/uid-map index 26765fa..10c3fac 100755 --- a/bin/uid-map +++ b/bin/uid-map @@ -3,8 +3,6 @@ load "#{File.dirname(__FILE__)}/common.rb" -users = Dir.glob("#{cfg["yamldir"]}/*.yml").each do |filename| - uid = File.basename(filename).sub(/^([0-9]*)\.yml$/, "\\1").to_i - user = load_user_yaml(filename) +load_all_users.each do |uid,user| puts "#{uid}:#{user["username"]}" end |