Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update documentation to match reality #1

Merged
merged 1 commit into from
Oct 20, 2019
Merged
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
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ We assume these files exist in `ROOT_DIR`:

ROOT_DIR/
+-- config.yml service configuration
+-- defaults.yml global defaults for host configs
+-- globals.yml global defaults for host configs
+-- hosts/
  +-- $host/config.yml host config (variant A)
  +-- $host.yml host config (variant B)
Expand Down Expand Up @@ -164,8 +164,8 @@ ssh:
timeout: int # timeout for establishing connection

rsync:
included: []string # rsync pattern for included files/directories
excluded: []string # rsync pattern for excluded files/directories
include: []string # rsync pattern for included files/directories
exclude: []string # rsync pattern for excluded files/directories
args: []string # other rsync arguments

# included, excluded and args will be merged with the global config
Expand Down Expand Up @@ -196,7 +196,7 @@ ssh:
port: 22
timeout: 10
rsync:
included:
include:
- /etc
- /home
- /opt
Expand All @@ -205,7 +205,7 @@ rsync:
- /usr/local/etc
- /var/spool/cron
- /var/www
excluded:
exclude:
- "tmp"
- "*.log"
- "*.log.*"
Expand Down