[open-ils-commits] [GIT] Evergreen ILS branch master updated. 4bd79c40e6898444c9e4d13eda341225da0a34c8

Evergreen Git git at git.evergreen-ils.org
Sun Sep 17 16:45:45 EDT 2017


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  4bd79c40e6898444c9e4d13eda341225da0a34c8 (commit)
      from  9ee6e6ced0fc5e39ce6c7c925ffc269c6bae3522 (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 4bd79c40e6898444c9e4d13eda341225da0a34c8
Author: Jane Sandberg <sandbej at linnbenton.edu>
Date:   Sun Sep 17 13:45:36 2017 -0700

    Docs reorg: moving SQL from circ manual to command line sysadmin manual
    
    Signed-off-by: Jane Sandberg <sandbej at linnbenton.edu>

diff --git a/docs/admin/staff_from_command_line.adoc b/docs/admin/staff_from_command_line.adoc
new file mode 100644
index 0000000..b38f906
--- /dev/null
+++ b/docs/admin/staff_from_command_line.adoc
@@ -0,0 +1,26 @@
+Managing Staff from the Command Line
+====================================
+
+Changing passwords
+------------------
+
+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 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.
+
+[source, sql]
+------------------------------------------------------------------------------
+UPDATE actor.usr SET passwd = <password> WHERE id=<id of row to be updated>;
+------------------------------------------------------------------------------
+
+The new password will automatically be hashed.
+
diff --git a/docs/circulation/circulation_patron_records.adoc b/docs/circulation/circulation_patron_records.adoc
index 98d45dd..ad013f6 100644
--- a/docs/circulation/circulation_patron_records.adoc
+++ b/docs/circulation/circulation_patron_records.adoc
@@ -318,30 +318,6 @@ 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 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.
-
-[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 
 ~~~~~~~~~~~~~~~~
 
diff --git a/docs/circulation/circulation_patron_records_web_client.adoc b/docs/circulation/circulation_patron_records_web_client.adoc
index 0b8a6ad..e75c226 100644
--- a/docs/circulation/circulation_patron_records_web_client.adoc
+++ b/docs/circulation/circulation_patron_records_web_client.adoc
@@ -242,31 +242,6 @@ 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 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.
-
-[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 
 ~~~~~~~~~~~~~~~~
 
diff --git a/docs/root_command_line_admin.adoc b/docs/root_command_line_admin.adoc
index 6fea46b..28e6c48 100644
--- a/docs/root_command_line_admin.adoc
+++ b/docs/root_command_line_admin.adoc
@@ -95,6 +95,8 @@ Cataloging Staff Interface
 
 include::admin/physical_char_wizard_db.adoc[]
 
+include::admin/staff_from_command_line.adoc[]
+
 UX Administration
 =================
 

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

Summary of changes:
 docs/admin/staff_from_command_line.adoc            |   26 ++++++++++++++++++++
 docs/circulation/circulation_patron_records.adoc   |   24 ------------------
 .../circulation_patron_records_web_client.adoc     |   25 -------------------
 docs/root_command_line_admin.adoc                  |    2 +
 4 files changed, 28 insertions(+), 49 deletions(-)
 create mode 100644 docs/admin/staff_from_command_line.adoc


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list