diff options
Diffstat (limited to 'modules/usermanager/mgaAddUser')
-rwxr-xr-x | modules/usermanager/mgaAddUser | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/modules/usermanager/mgaAddUser b/modules/usermanager/mgaAddUser new file mode 100755 index 0000000..34cd031 --- /dev/null +++ b/modules/usermanager/mgaAddUser @@ -0,0 +1,21 @@ +#!/usr/bin/perl + +use lib qw(/usr/lib/libDrakX); + +use standalone; #- warning, standalone must be loaded very first, for 'explanations' + +use common; + +use AdminPanel::Shared; +use AdminPanel::Users::GUsers; + +use yui; + +my $wm_icon = "/usr/share/icons/userdrake.png"; + +yui::YUI::app()->setApplicationTitle(N("Mageia Users Management Tool")); +yui::YUI::app()->setApplicationIcon($wm_icon); + +AdminPanel::Users::GUsers::addUserDialog(); + +1;
\ No newline at end of file |