Sha256: fa2b6bc69ce32b95133c424e02d971844167f259003726f5f2b4cc036ac75914

Contents?: true

Size: 896 Bytes

Versions: 7

Compression:

Stored size: 896 Bytes

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
unless user.save
  puts "failed"
  puts user.errors.full_messages
  exit 1
end

Version data entries

7 entries across 7 versions & 2 rubygems

Version Path
activeldap-0.9.0 examples/usermod
activeldap-0.10.0 examples/usermod
activeldap-1.0.0 examples/usermod
activeldap-1.0.2 examples/usermod
activeldap-1.0.1 examples/usermod
ruby-activeldap-0.8.2 examples/usermod
ruby-activeldap-0.8.3.1 examples/usermod