#!/usr/bin/perl

use strict;
use diagnostics;

use lib qw(/usr/lib/libDrakX);
use standalone;  #- warning, standalone must be loaded very first, for 'explanations'

use interactive;
use common;

my $in = interactive->vnew('su');
$in->do_pkgs->install($ARGV[0]);
$in->exit(0);
