Sha256: 6b5485e2fada27e4fed9186c06a48e43834f6617dca535463c4f1e9df952b92a
Contents?: true
Size: 1.01 KB
Versions: 7
Compression:
Stored size: 1.01 KB
Contents
#!/usr/bin/ruby -W0 base = File.expand_path(File.join(File.dirname(__FILE__), "..")) $LOAD_PATH << File.join(base, "lib") $LOAD_PATH << File.join(base, "examples") require 'active_ldap' require 'objects/user' require 'objects/group' argv, opts, options = ActiveLdap::Command.parse_options do |opts, options| opts.banner += " USER_NAME CN UID" end if argv.size == 3 name, cn, uid = argv else $stderr.puts opts exit 1 end pwb = Proc.new do |user| ActiveLdap::Command.read_password("[#{user}] Password: ") end ActiveLdap::Base.establish_connection(:password_block => pwb, :allow_anonymous => false) unless User.exists?(name) $stderr.puts("User #{name} doesn't exist.") exit 1 end user = User.find(name) user.cn = cn user.uid_number = uid user.gid_number = uid if user.classes.include?('strongAuthenticationUser') user.user_certificate = nil user.remove_class('strongAuthenticationUser') end unless user.save puts "failed" puts user.errors.full_messages exit 1 end
Version data entries
7 entries across 7 versions & 2 rubygems