aboutsummaryrefslogtreecommitdiffstats
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rwxr-xr-xmodules/usermanager/mgaAddUser21
1 files changed, 21 insertions, 0 deletions
diff --git a/modules/usermanager/mgaAddUser b/modules/usermanager/mgaAddUser
new file mode 100755
index 00000000..34cd0312
--- /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