#!/usr/bin/env perl
package ubic_admin;
BEGIN {
  $ubic_admin::VERSION = '1.33_01';
}

use strict;
use warnings;

# ABSTRACT: ubic administration script


use Pod::Usage;
use Ubic::Admin::Setup;

return 1 if caller;

my $command = shift @ARGV;

if (not defined $command or $command ne 'setup') {
    pod2usage(2);
}

Ubic::Admin::Setup::setup();

__END__
=pod

=head1 NAME

ubic_admin - ubic administration script

=head1 VERSION

version 1.33_01

=head1 SYNOPSIS

    ubic-admin setup [--batch-mode] [--quiet] [other options]

=head1 AUTHOR

Vyacheslav Matyukhin <mmcleric@yandex-team.ru>

=head1 COPYRIGHT AND LICENSE

This software is copyright (c) 2011 by Yandex LLC.

This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.

=cut

