[open-ils-commits] ***SPAM*** [GIT] Evergreen ILS branch master updated. 4d40cf71a7aed9551a770dccc33ec26e6f91210c

Evergreen Git git at git.evergreen-ils.org
Mon Mar 31 17:29:19 EDT 2014


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Evergreen ILS".

The branch, master has been updated
       via  4d40cf71a7aed9551a770dccc33ec26e6f91210c (commit)
       via  2760e95d2658fb4594f35b78e6b559f987e51a63 (commit)
      from  c3c8b74d5169ef31d9801054ddd66f0320e6591b (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 4d40cf71a7aed9551a770dccc33ec26e6f91210c
Author: Benjamin <benjamin.wiens at gmail.com>
Date:   Mon Mar 31 16:37:06 2014 -0400

    LP#1300267 Documentation: Reset Staff Client Password (e.g. Admin)
    
    Signed-off-by: Benjamin <benjamin.wiens at gmail.com>
    Signed-off-by: Yamil Suarez <yamil at yamil.com>

diff --git a/docs/circulation/circulation_patron_records.txt b/docs/circulation/circulation_patron_records.txt
index cfbd3cf..375c858 100644
--- a/docs/circulation/circulation_patron_records.txt
+++ b/docs/circulation/circulation_patron_records.txt
@@ -291,22 +291,30 @@ A new number will populate the _Password_ and _Verify Password_ text boxes.
 Make note of the new password and _Save_ the patron record.  The screen will
 refresh and the new password will be suppressed from view.   
 
-[TIP]
 
+[TIP]
+=======================
 If you need to change a patron or staff account password without using the staff client, here is how you can reset it with SQL.
 
-Connect to your Evergreen database using psql or a similar tool, and retreive and verify your admin username:
+Connect to your Evergreen database using _psql_ or similar tool, and retreive and verify your admin username:
 
+[source, sql]
+------------------------------------------------------------------------------
 psql -U <user-name> -h <hostname> -d <database>
 
 SELECT id, usrname, passwd from actor.usr where usrname = 'admin';
+------------------------------------------------------------------------------
 
-If you do not remember the username that you set, search for it in the actor.usr table, and then reset the password.
+If you do not remember the username that you set, search for it in the _actor.usr_ table, and then reset the password.
 
+[source, sql]
+------------------------------------------------------------------------------
 UPDATE actor.usr SET passwd = <password> WHERE id=<id of row to be updated>;
+------------------------------------------------------------------------------
 
 The new password will automatically be hashed. 
 
+=======================
 
 Barring a Patron 
 ~~~~~~~~~~~~~~~~

commit 2760e95d2658fb4594f35b78e6b559f987e51a63
Author: Benjamin <benjamin.wiens at gmail.com>
Date:   Mon Mar 31 16:29:11 2014 -0400

    LP#1300267 Documentation: Reset Staff Client Password (e.g. Admin)
    
    Signed-off-by: Benjamin <benjamin.wiens at gmail.com>
    Signed-off-by: Yamil Suarez <yamil at yamil.com>

diff --git a/docs/circulation/circulation_patron_records.txt b/docs/circulation/circulation_patron_records.txt
index f532528..cfbd3cf 100644
--- a/docs/circulation/circulation_patron_records.txt
+++ b/docs/circulation/circulation_patron_records.txt
@@ -291,6 +291,23 @@ A new number will populate the _Password_ and _Verify Password_ text boxes.
 Make note of the new password and _Save_ the patron record.  The screen will
 refresh and the new password will be suppressed from view.   
 
+[TIP]
+
+If you need to change a patron or staff account password without using the staff client, here is how you can reset it with SQL.
+
+Connect to your Evergreen database using psql or a similar tool, and retreive and verify your admin username:
+
+psql -U <user-name> -h <hostname> -d <database>
+
+SELECT id, usrname, passwd from actor.usr where usrname = 'admin';
+
+If you do not remember the username that you set, search for it in the actor.usr table, and then reset the password.
+
+UPDATE actor.usr SET passwd = <password> WHERE id=<id of row to be updated>;
+
+The new password will automatically be hashed. 
+
+
 Barring a Patron 
 ~~~~~~~~~~~~~~~~
 

-----------------------------------------------------------------------

Summary of changes:
 docs/circulation/circulation_patron_records.txt |   25 +++++++++++++++++++++++
 1 files changed, 25 insertions(+), 0 deletions(-)


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list