From 91bfbb7ff0accc3e4774f924963c7caf72c9e81a Mon Sep 17 00:00:00 2001 From: Eric Renfro Date: Thu, 2 Sep 2021 21:03:00 -0400 Subject: [PATCH] Moved templates into templates directory to not crown main. --- README.md | 6 +++--- config.yaml.tpl => templates/config.yaml.tpl | 0 excludes.tpl => templates/excludes.tpl | 0 patterns.tpl => templates/patterns.tpl | 0 4 files changed, 3 insertions(+), 3 deletions(-) rename config.yaml.tpl => templates/config.yaml.tpl (100%) rename excludes.tpl => templates/excludes.tpl (100%) rename patterns.tpl => templates/patterns.tpl (100%) diff --git a/README.md b/README.md index 4e195f5..c928cdd 100644 --- a/README.md +++ b/README.md @@ -5,9 +5,9 @@ ``` git checkout https://git.linux-help.org/Linux-Help/borgmatic-base.git /etc/borgmatic pushd /etc/borgmatic -cp config.yaml.tpl config.yaml -cp patterns.tpl patterns -cp excludes.tpl excludes +cp templates/config.yaml.tpl config.yaml +cp templates/patterns.tpl patterns +cp templates/excludes.tpl excludes ln -s ../scripts/post_end postbackup.d/90-post_end popd ``` diff --git a/config.yaml.tpl b/templates/config.yaml.tpl similarity index 100% rename from config.yaml.tpl rename to templates/config.yaml.tpl diff --git a/excludes.tpl b/templates/excludes.tpl similarity index 100% rename from excludes.tpl rename to templates/excludes.tpl diff --git a/patterns.tpl b/templates/patterns.tpl similarity index 100% rename from patterns.tpl rename to templates/patterns.tpl