diff --git a/install/update.php b/install/update.php
index cae871128b6e40d944ed3e26d824324308cba497..75dede1f6659ac8d24b2e04d0a2ec00e9e35663f 100644
--- a/install/update.php
+++ b/install/update.php
@@ -190,7 +190,7 @@ $do_backup = $inst->simple_query('Shall the script create a ISPConfig backup in
 if($do_backup == 'yes') {
 
 	//* Create the backup directory
-	$backup_path = '/var/backup/ispconfig_'.@date('Y-m-d_H-i');
+	$backup_path = '/var/backup/ispconfig_'.$conf['hostname'].'_'.@date('Y-m-d_H-i');
 	$conf['backup_path'] = $backup_path;
 	exec("mkdir -p $backup_path");
 	exec("chown root:root $backup_path");