summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2016-06-15 15:56:55 -0400
committerLuke Shumaker <lukeshu@sbcglobal.net>2016-06-15 15:56:55 -0400
commit6a91ec075c8a89559c0957c096a99b96b4a58ca1 (patch)
treeaa77e38ea24b2f043f86c24af5403c8fe6bf78d7
parenta99143e86220f93afb6ba93c6ac7b4ef65dc2920 (diff)
common.rb#load_all_users: return a map of uid=>info, instead of an array of infos
-rw-r--r--bin/common.rb8
-rwxr-xr-xbin/pgp-list-keyids2
-rwxr-xr-xbin/postfix-generate-virtual-map2
-rwxr-xr-xbin/ssh-list-authorized-keys2
-rwxr-xr-xbin/uid-map4
5 files changed, 11 insertions, 7 deletions
diff --git a/bin/common.rb b/bin/common.rb
index a5840ec..4380340 100644
--- a/bin/common.rb
+++ b/bin/common.rb
@@ -12,5 +12,11 @@ def load_user_yaml(filename)
end
def load_all_users
- Dir.glob("#{cfg["yamldir"]}/*.yml").map{|filename|load_user_yaml(filename)}
+ users = {}
+ Dir.glob("#{cfg["yamldir"]}/*.yml").map{|filename|
+ uid = File.basename(filename).sub(/^([0-9]*)\.yml$/, "\\1").to_i
+ user = load_user_yaml(filename)
+ users[uid] = user
+ }
+ return users
end
diff --git a/bin/pgp-list-keyids b/bin/pgp-list-keyids
index f6b71fe..9682b1a 100755
--- a/bin/pgp-list-keyids
+++ b/bin/pgp-list-keyids
@@ -3,7 +3,7 @@
load "#{File.dirname(__FILE__)}/common.rb"
-load_all_users.each do |user|
+load_all_users.each do |uid,user|
if user["groups"]
if user["groups"].include?("keyring-trusted")
puts "trusted/#{user["username"]} #{user["pgp_keyid"]}"
diff --git a/bin/postfix-generate-virtual-map b/bin/postfix-generate-virtual-map
index f323d6b..d5c2d21 100755
--- a/bin/postfix-generate-virtual-map
+++ b/bin/postfix-generate-virtual-map
@@ -3,7 +3,7 @@
load "#{File.dirname(__FILE__)}/common.rb"
-users = load_all_users.find_all{|u|u["groups"].include?("email")}
+users = load_all_users.values.find_all{|u|u["groups"].include?("email")}
users.each do |user|
if user["email"] and user["email"].length > 0
diff --git a/bin/ssh-list-authorized-keys b/bin/ssh-list-authorized-keys
index 5e178e1..5fb1ea1 100755
--- a/bin/ssh-list-authorized-keys
+++ b/bin/ssh-list-authorized-keys
@@ -3,7 +3,7 @@
load "#{File.dirname(__FILE__)}/common.rb"
-all_users = load_all_users
+all_users = load_all_users.values
groupnames = ARGV & cfg["ssh_pseudo_users"]
usernames = ARGV & all_users.map{|u|u["username"]}
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