Increase dialog size

This commit is contained in:
Bob Mottram 2017-09-23 10:42:22 +01:00
parent a51f70e424
commit c9f0223c58
1 changed files with 2 additions and 2 deletions

View File

@ -161,7 +161,7 @@ function searx_enable_login {
read_config_param $MY_USERNAME
SEARX_LOGIN_PASS=$(${PROJECT_NAME}-pass -u $MY_USERNAME -a searx)
dialog --title $"Enable Searx login" \
--msgbox $"Searx logins are now enabled with the password $SEARX_LOGIN_PASS" 6 40
--msgbox $"Searx logins are now enabled with the password $SEARX_LOGIN_PASS" 6 65
SEARX_LOGIN_PASS=
;;
1) if ! grep -q '#auth_basic' /etc/nginx/sites-available/searx; then
@ -169,7 +169,7 @@ function searx_enable_login {
systemctl restart nginx
fi
dialog --title $"Disable Searx login" \
--msgbox $"Searx logins are now disabled. Anyone can access your metasearch engine." 6 40
--msgbox $"Searx logins are now disabled. Anyone can access your metasearch engine." 6 65
;;
esac
}