Update "find" command in documentation to work on BSDs and not just Linux (#583).
This commit is contained in:
parent
276a27d485
commit
9cc043f60e
1 changed files with 3 additions and 2 deletions
|
@ -215,8 +215,9 @@ databases that share the exact same name on different hosts.
|
||||||
setting to support dump and restore streaming, you'll need to ensure that any
|
setting to support dump and restore streaming, you'll need to ensure that any
|
||||||
special files are excluded from backups (named pipes, block devices,
|
special files are excluded from backups (named pipes, block devices,
|
||||||
character devices, and sockets) to prevent hanging. Try a command like
|
character devices, and sockets) to prevent hanging. Try a command like
|
||||||
`find /your/source/path -type c,b,p,s` to find such files. Common directories
|
`find /your/source/path -type b -or -type c -or -type p -or -type s` to find
|
||||||
to exclude are `/dev` and `/run`, but that may not be exhaustive.
|
such files. Common directories to exclude are `/dev` and `/run`, but that may
|
||||||
|
not be exhaustive.
|
||||||
|
|
||||||
|
|
||||||
### Manual restoration
|
### Manual restoration
|
||||||
|
|
Loading…
Reference in a new issue