]> git.ipfire.org Git - thirdparty/systemd.git/blobdiff - docs/CONVERTING_TO_HOMED.md
Merge pull request #16697 from yuwata/network-fix-suspend-issue
[thirdparty/systemd.git] / docs / CONVERTING_TO_HOMED.md
index 991f6ec831468c72fe36c3d6026a2b6c491dd87f..78b6c616317961b4bc2201891880d69484dd8490 100644 (file)
@@ -1,6 +1,6 @@
 ---
 title: Converting Existing Users to systemd-homed
-category: Interfaces
+category: Users, Groups and Home Directories
 layout: default
 ---
 
@@ -113,7 +113,7 @@ Here's the step-by-step guide:
    home directory temporarily and copy the data in.
 
     ```
-    homectl with foobar -- rsync -aHAXv --delete-during /home/foobar.saved/ .
+    homectl with foobar -- rsync -aHAXv --remove-source-files /home/foobar.saved/ .
     ```
 
    This mounts the home directory of the user, and then runs the specified
@@ -121,7 +121,7 @@ Here's the step-by-step guide:
    new. The new home directory is the working directory of the invoked `rsync`
    process. We are invoking this command as root, hence the `rsync` runs as
    root too. When the `rsync` command completes the home directory is
-   automatically unmounted again. Since we used `--delete-during` all files
+   automatically unmounted again. Since we used `--remove-source-files` all files
    copied are removed from the old home directory as the copy progresses. After
    the command completes the old home directory should be empty. Let's remove
    it hence: