mirror of
https://github.com/gnustep/libs-ec.git
synced 2025-02-15 08:01:42 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/ec/trunk@37769 72102866-910b-0410-8b05-ffd578937521
23 lines
546 B
Text
23 lines
546 B
Text
{
|
|
/* This file configures the names/passwords of the people allowed to use
|
|
* the Console program to control the system.
|
|
* Just add a definition for yourself as below:
|
|
*/
|
|
richard = {
|
|
Password = richard;
|
|
};
|
|
|
|
/* If the entry with no name exists, it will be used to allow login for
|
|
* any username which doesn't exist in this file.
|
|
*/
|
|
"" = {
|
|
Password = password;
|
|
};
|
|
|
|
/* If Password is omitted or is empty, then any password is accepted
|
|
* to allow the user to log in.
|
|
*/
|
|
guest = {
|
|
Password = "";
|
|
};
|
|
}
|