From 4a5e9d4271cf97979ddf5889ac4ea9e3f1dcf8f9 Mon Sep 17 00:00:00 2001 From: Pablo Thasi Date: Thu, 28 Sep 2023 09:15:52 +0100 Subject: [PATCH] Fix command to Transfer the configuration, environment, and platform data from server 1 to server 2 I added `rsync` to Transfer the configuration, environment, and platform data from server 1 to server 2 command so that we can we able to transfer data. I found that `-avr` options fit well to it. --- docs/tutorials/datamigration.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorials/datamigration.rst b/docs/tutorials/datamigration.rst index 8434eee..e7923a6 100644 --- a/docs/tutorials/datamigration.rst +++ b/docs/tutorials/datamigration.rst @@ -12,7 +12,7 @@ With Tutor, all data are stored in a single folder. This means that it's extreme 3. Transfer the configuration, environment, and platform data from server 1 to server 2:: - sudo -avr "$(tutor config printroot)/" username@server2:/tmp/tutor/ + sudo rsync -avr "$(tutor config printroot)/" username@server2:/tmp/tutor/ 4. On server 2, move the data to the right location::