Restore autocompletion working!

This commit is contained in:
Your Name
2025-04-26 00:11:23 +12:00
parent fa7236b4f5
commit 8e0683c997
6 changed files with 71 additions and 0 deletions

View File

@ -80,6 +80,11 @@ class service_runner {
// 4. copy it to the local user_dir/backups folder
bool backup();
// restore the service over ssh, using the credentials from server.env (via server_env.hpp)
// 1. copy the backup file to the server's DROPSHELL_DIR/backups folder
// 2. run the restore.sh script on the server, passing the {service_name}.env file as an argument
bool restore(std::string backup_file);
// launch an interactive ssh session on a server or service
// replaces the current dropshell process with the ssh process
void interactive_ssh_service();