summaryrefslogtreecommitdiff
path: root/bin/uid-map
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2016-11-11 03:50:16 -0500
committerLuke Shumaker <lukeshu@sbcglobal.net>2016-11-11 03:50:16 -0500
commit6bab779d41fa81ae544f795a1f9af8344c35427a (patch)
tree8c3953f2f9205c44db421275faa277f0dc059b43 /bin/uid-map
parentea18fd78c81129049e398ce545e39f55a28f193e (diff)
remove things that now live elsewhere
Diffstat (limited to 'bin/uid-map')
-rwxr-xr-xbin/uid-map10
1 files changed, 0 insertions, 10 deletions
diff --git a/bin/uid-map b/bin/uid-map
deleted file mode 100755
index 90dd472..0000000
--- a/bin/uid-map
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/usr/bin/env ruby
-# Usage: uid-map
-
-require 'yaml'
-
-users = Dir.glob("users/*.yml").each do |filename|
- uid = filename.sub(/users\/([0-9]*)\.yml/, "\\1").to_i
- user = YAML::load(open(filename))
- puts "#{uid}:#{user["username"]}"
-end