Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions doc/csync2-quickstart.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ Getting started with Csync^2^

All commands detailed here need to be executed as root, so be extra careful.

The config file for Csync^2^ is `/etc/csync2/csync2.cfg`. Here is an example:
The config file for Csync^2^ is `/etc/csync2.cfg`. Here is an example:

....
mygroup {
group mygroup {
host host1;
host host2;
key /etc/csync2/mygroup.key;
include /etc/csync2/csync2.cfg;
include /etc/csync2.cfg;
include /etc/testfile;
}
....
Expand All @@ -30,7 +30,8 @@ Generate the pre-shared key used for authentication:

Copy the configuration file and the pre-shared key to host2:
```
scp /etc/csync2/csync2.cfg /etc/csync2/mygroup.key host2:/etc/csync2/
scp /etc/csync2.cfg host2:/etc/csync2.cfg
scp /etc/csync2/mygroup.key host2:/etc/csync2/
```

The SSL key and certificate may be generated upon package installation,
Expand Down