├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── rtb-wrapper.sh ├── run-tests.sh └── test ├── Dockerfile ├── bats ├── backup-default-exclude-file-override.bats ├── backup-default-exclude-file.bats ├── backup-excludes-in-profile.bats ├── backup-no-excludes.bats ├── restore-file-added.bats └── restore-file-changed.bats ├── conf.d ├── default-exclude-file-override.excludes.lst ├── default-exclude-file-override.inc ├── default-exclude-file.excludes.lst ├── default-exclude-file.inc ├── testcase-excludes-in-profile.inc └── testcase-no-excludes.inc ├── default-exclude-file-override.lst ├── example-source ├── file1.txt ├── file2.txt └── folder-a │ └── file3.txt └── excludes.lst /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-mc-work/rtb-wrapper/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-mc-work/rtb-wrapper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-mc-work/rtb-wrapper/HEAD/README.md -------------------------------------------------------------------------------- /rtb-wrapper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-mc-work/rtb-wrapper/HEAD/rtb-wrapper.sh -------------------------------------------------------------------------------- /run-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-mc-work/rtb-wrapper/HEAD/run-tests.sh -------------------------------------------------------------------------------- /test/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-mc-work/rtb-wrapper/HEAD/test/Dockerfile -------------------------------------------------------------------------------- /test/bats/backup-default-exclude-file-override.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-mc-work/rtb-wrapper/HEAD/test/bats/backup-default-exclude-file-override.bats -------------------------------------------------------------------------------- /test/bats/backup-default-exclude-file.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-mc-work/rtb-wrapper/HEAD/test/bats/backup-default-exclude-file.bats -------------------------------------------------------------------------------- /test/bats/backup-excludes-in-profile.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-mc-work/rtb-wrapper/HEAD/test/bats/backup-excludes-in-profile.bats -------------------------------------------------------------------------------- /test/bats/backup-no-excludes.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-mc-work/rtb-wrapper/HEAD/test/bats/backup-no-excludes.bats -------------------------------------------------------------------------------- /test/bats/restore-file-added.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-mc-work/rtb-wrapper/HEAD/test/bats/restore-file-added.bats -------------------------------------------------------------------------------- /test/bats/restore-file-changed.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-mc-work/rtb-wrapper/HEAD/test/bats/restore-file-changed.bats -------------------------------------------------------------------------------- /test/conf.d/default-exclude-file-override.excludes.lst: -------------------------------------------------------------------------------- 1 | /file1.txt -------------------------------------------------------------------------------- /test/conf.d/default-exclude-file-override.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-mc-work/rtb-wrapper/HEAD/test/conf.d/default-exclude-file-override.inc -------------------------------------------------------------------------------- /test/conf.d/default-exclude-file.excludes.lst: -------------------------------------------------------------------------------- 1 | /file1.txt -------------------------------------------------------------------------------- /test/conf.d/default-exclude-file.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-mc-work/rtb-wrapper/HEAD/test/conf.d/default-exclude-file.inc -------------------------------------------------------------------------------- /test/conf.d/testcase-excludes-in-profile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-mc-work/rtb-wrapper/HEAD/test/conf.d/testcase-excludes-in-profile.inc -------------------------------------------------------------------------------- /test/conf.d/testcase-no-excludes.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-mc-work/rtb-wrapper/HEAD/test/conf.d/testcase-no-excludes.inc -------------------------------------------------------------------------------- /test/default-exclude-file-override.lst: -------------------------------------------------------------------------------- 1 | file2.txt -------------------------------------------------------------------------------- /test/example-source/file1.txt: -------------------------------------------------------------------------------- 1 | file one -------------------------------------------------------------------------------- /test/example-source/file2.txt: -------------------------------------------------------------------------------- 1 | file two -------------------------------------------------------------------------------- /test/example-source/folder-a/file3.txt: -------------------------------------------------------------------------------- 1 | file three -------------------------------------------------------------------------------- /test/excludes.lst: -------------------------------------------------------------------------------- 1 | file2.txt --------------------------------------------------------------------------------