From 8ae47ac8cc4cbe48e761bf8c4ae6c665180c4d72 Mon Sep 17 00:00:00 2001 Message-Id: <8ae47ac8cc4cbe48e761bf8c4ae6c665180c4d72.1714654867.git.mdw@distorted.org.uk> From: Mark Wooding Date: Sat, 20 Oct 2007 15:39:01 +0100 Subject: [PATCH] README just tells you to use disorder authorize now Organization: Straylight/Edgeware From: Richard Kettlewell --- README | 22 ++++------------------ clients/disorder.c | 2 +- 2 files changed, 5 insertions(+), 19 deletions(-) diff --git a/README b/README index d59e017..9945728 100644 --- a/README +++ b/README @@ -147,26 +147,12 @@ NOTE: If you are upgrading from an earlier version, see README.upgrades. The track should stop playing, and (if you set any up) a scratch sound play. -8. Add any other users you want to config.private. Each user's password - should be stored in a file in their home directory, ~/.disorder/passwd, - which should be readable only by them, and should take the form of a single - line: +8. Add any other users you want. These easiest way to do this is: - password MYPASSWORD - - (root doesn't need this as the client can read it out of config.private - when running as root.) - - Note that the server must be reloaded (e.g. by 'disorder reconfigure') - when new users are added. - - Alternatively the administrator can create /etc/disorder/config.USERNAME - containing the same thing as above. It can either be owned by the user and - mode 400, or owned by root and the user's group (if you have per-user - groups) and mode 440. + disorder authorize USERNAME - You can use 'disorder authorize' to automatically pick passwords and - create these files. + This will automatically choose a random password and add new line to + /etc/disorder/config.private and create /etc/disorder/config.USERNAME. 9. Optionally source completion.bash from /etc/profile or similar, for example: diff --git a/clients/disorder.c b/clients/disorder.c index 7134e7b..5817766 100644 --- a/clients/disorder.c +++ b/clients/disorder.c @@ -1,6 +1,6 @@ /* * This file is part of DisOrder. - * Copyright (C) 2004, 2005, 2006 Richard Kettlewell + * Copyright (C) 2004, 2005, 2006, 2007 Richard Kettlewell * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by -- [mdw]