We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 92aea2e commit c63b399Copy full SHA for c63b399
install/uninstall.php
@@ -55,10 +55,10 @@
55
$input = fgets(STDIN);
56
$do_uninstall = rtrim($input);
57
58
-echo "\n\n>> Uninstalling ISPConfig 3... \n\n";
59
60
if($do_uninstall == 'yes') {
61
+ echo "\n\n>> Uninstalling ISPConfig 3... \n\n";
62
63
// Delete the ISPConfig database
64
// $app->db->query("DROP DATABASE '".$conf["db_database"]."'");
@@ -86,9 +86,10 @@
86
exec('rm -rf /usr/local/ispconfig');
87
88
echo "Please do not forget to delete the ispconfig user in the mysql.user table.\n\n";
89
-
90
- echo "Finished.\n";
+ echo "Finished uninstalling.\n";
91
+} else {
92
+ echo "\n\n>> Canceled uninstall. \n\n";
93
}
94
95
?>
0 commit comments