This commit is contained in:
John 2025-04-27 21:17:22 +12:00
parent 5e8189c103
commit a2c233e328

View File

@ -268,7 +268,10 @@ int backup(const std::vector<std::string> & args, bool silent) {
return false; return false;
} }
if (!silent) std::cout << "Backup created successfully: " << local_backup_file_path << std::endl; if (!silent) {
std::cout << "Backup created successfully. Restore with:"<<std::endl;
std::cout << " dropshell restore " << server_name << " " << service_name << " " << backup_filename << std::endl;
}
return true; return true;
} }