Index: debian_installer/lams2-2.1rc1/debian/postrm =================================================================== diff -u -r209fecfc461929b9929daf15f33234efff6c8567 -r34811b18e32704e99f0d8d59dc696ca452c80bac --- debian_installer/lams2-2.1rc1/debian/postrm (.../postrm) (revision 209fecfc461929b9929daf15f33234efff6c8567) +++ debian_installer/lams2-2.1rc1/debian/postrm (.../postrm) (revision 34811b18e32704e99f0d8d59dc696ca452c80bac) @@ -48,9 +48,9 @@ # Drop the database if [ "$db_root_pass" != "" ] ; then - mysql -e "drop database if exists lams" -u lams -plamsdbpasswd || true + mysql -e "drop database if exists lams" -u root -p$db_root_pass || true else - mysql -e "drop database if exists lams" -u lams || true + mysql -e "drop database if exists lams" -u root || true fi ;;