You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
80 lines
1.8 KiB
80 lines
1.8 KiB
/* vi: ts=8 sts=4 sw=4
|
|
*
|
|
* $Id$
|
|
*
|
|
* This file is part of the KDE project, module tdesu.
|
|
* Copyright (C) 2000 Geert Jansen <jansen@kde.org>
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include <kuniqueapplication.h>
|
|
#include <klocale.h>
|
|
#include <kaboutdata.h>
|
|
#include <kcmdlineargs.h>
|
|
#include <kmessagebox.h>
|
|
#include <kuser.h>
|
|
#include <kdebug.h>
|
|
|
|
#include "passwd.h"
|
|
#include "passwddlg.h"
|
|
|
|
static KCmdLineOptions options[] =
|
|
{
|
|
{ "+[user]", I18N_NOOP("Change password of this user"), 0 },
|
|
KCmdLineLastOption
|
|
};
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
KAboutData aboutData("kdepasswd", I18N_NOOP("TDE passwd"),
|
|
VERSION, I18N_NOOP("Changes a UNIX password."),
|
|
KAboutData::License_Artistic, "Copyright (c) 2000 Geert Jansen");
|
|
aboutData.addAuthor("Geert Jansen", I18N_NOOP("Maintainer"),
|
|
"jansen@kde.org", "http://www.stack.nl/~geertj/");
|
|
|
|
KCmdLineArgs::init(argc, argv, &aboutData);
|
|
KCmdLineArgs::addCmdLineOptions(options);
|
|
KUniqueApplication::addCmdLineOptions();
|
|
|
|
|
|
if (!KUniqueApplication::start()) {
|
|
kdDebug() << "kdepasswd is already running" << endl;
|
|
return 0;
|
|
}
|
|
|
|
KUniqueApplication app;
|
|
|
|
KUser ku;
|
|
TQCString user;
|
|
bool bRoot = ku.isSuperUser();
|
|
KCmdLineArgs *args = KCmdLineArgs::parsedArgs();
|
|
|
|
if (args->count())
|
|
user = args->arg(0);
|
|
|
|
/* You must be able to run "kdepasswd loginName" */
|
|
if ( !user.isEmpty() && user!=KUser().loginName().utf8() && !bRoot)
|
|
{
|
|
KMessageBox::sorry(0, i18n("You need to be root to change the password of other users."));
|
|
return 0;
|
|
}
|
|
|
|
TQCString oldpass;
|
|
if (!bRoot)
|
|
{
|
|
int result = KDEpasswd1Dialog::getPassword(oldpass);
|
|
if (result != KDEpasswd1Dialog::Accepted)
|
|
return 0;
|
|
}
|
|
|
|
KDEpasswd2Dialog *dlg = new KDEpasswd2Dialog(oldpass, user);
|
|
|
|
|
|
dlg->exec();
|
|
|
|
return 0;
|
|
}
|
|
|