Sha256: 9e379837c7c77a05f7c6b7ab6fa11cd016f93a8cbbd9d814025409df39760f3e

Contents?: true

Size: 884 Bytes

Versions: 35

Compression:

Stored size: 884 Bytes

Contents

#!/usr/bin/ruby

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.setup_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

35 entries across 35 versions & 3 rubygems

Version Path
activeldap-7.2.1 examples/usermod
activeldap-7.2.0 examples/usermod
activeldap-7.0.0 examples/usermod
activeldap-6.1.0 examples/usermod
activeldap-6.0.4 examples/usermod
activeldap-6.0.3 examples/usermod
activeldap-6.0.2 examples/usermod
activeldap-6.0.1 examples/usermod
activeldap-6.0.0 examples/usermod
activeldap-5.2.4 examples/usermod
activeldap-5.2.3 examples/usermod
activeldap-5.2.2 examples/usermod
activeldap-5.2.1 examples/usermod
activeldap-5.2.0 examples/usermod
activeldap-5.1.1 examples/usermod
activeldap-5.1.0 examples/usermod
activeldap-3.2.3 examples/usermod
powerhome-activeldap-3.2.3 examples/usermod
activeldap-4.0.6 examples/usermod
activeldap-4.0.5 examples/usermod