Browse Source

password strip only displays relevent passwords

pull/1639/head
Daniel Gibbs 8 years ago
parent
commit
69e9c58f18
  1. 29
      lgsm/functions/info_messages.sh

29
lgsm/functions/info_messages.sh

@ -988,11 +988,28 @@ fn_messages_separator(){
# Removes the passwords form all but details # Removes the passwords form all but details
fn_info_message_password_strip(){ fn_info_message_password_strip(){
if [ "${function_selfname}" != "command_details.sh" ]; then if [ "${function_selfname}" != "command_details.sh" ]; then
serverpassword="********" if [ -n "${serverpassword}" ]; then
rconpassword="********" serverpassword="********"
adminpassword="********" fi
statspassword="********"
webadminpass="********" if [ -n "${rconpassword}" ]; then
telnetpass="********" rconpassword="********"
fi
if [ -n "${adminpassword}" ]; then
adminpassword="********"
fi
if [ -n "${statspassword}" ]; then
statspassword="********"
fi
if [ -n "${webadminpass}" ]; then
webadminpass="********"
fi
if [ -n "${telnetpass}" ]; then
telnetpass="********"
fi
fi fi
} }
Loading…
Cancel
Save