Sha256: 7f48b77e61eef3b5aff6c41a0031bfb421dbe7749837c4ea47652e36b2d2f969

Contents?: true

Size: 857 Bytes

Versions: 7

Compression:

Stored size: 857 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 += " GROUP_NAME"
end

if argv.size == 1
  name = argv.shift
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)

if Group.exists?(name)
  $stderr.puts("Group #{name} already exists.")
  exit 1
end

group = Group.new(name)
group.gid_number = 9000

unless group.save
  puts "failed"
  puts group.errors.full_messages
  exit 1
end

Version data entries

7 entries across 7 versions & 2 rubygems

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