From 638efbb82ac2206280306f7150f0735c3294d254 Mon Sep 17 00:00:00 2001 From: Mason James Date: Wed, 21 Sep 2022 23:38:59 +1200 Subject: [PATCH] Bug 28493: Make koha-passwd display the username Content-Type: text/plain; charset="utf-8" to test... 1/ run command $ sudo koha-passwd dev1 Password for dev1: CraZyPa$$WoRD!! Press enter to clear the screen... ^C 2/ apply patch 3/ run command again, note 'username' section $ sudo koha-passwd dev1 Username for dev1: koha_dev1 <<<<<<<<<<<< Password for dev1: CraZyPa$$WoRD!! Press enter to clear the screen... ^C --- debian/scripts/koha-passwd | 2 ++ 1 file changed, 2 insertions(+) diff --git a/debian/scripts/koha-passwd b/debian/scripts/koha-passwd index 5be04b40d3..77b303f025 100755 --- a/debian/scripts/koha-passwd +++ b/debian/scripts/koha-passwd @@ -46,7 +46,9 @@ for name in "$@" do if is_instance $name ; then passwd=$(xmlstarlet sel -t -v 'yazgfs/config/pass' /etc/koha/sites/$name/koha-conf.xml); + user=$(xmlstarlet sel -t -v 'yazgfs/config/user' /etc/koha/sites/$name/koha-conf.xml); if [ -t 1 ]; then + echo "Username for $name: $user" echo "Password for $name: $passwd" echo "Press enter to clear the screen..." read anykey -- 2.20.1