File: README.adoc

package info (click to toggle)
rdiff-backup 2.2.6-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,640 kB
  • sloc: python: 24,129; javascript: 9,512; sh: 1,230; ansic: 580; makefile: 36
file content (30 lines) | stat: -rw-r--r-- 1,043 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
= Vagrant setup for testing older versions of rdiff-backup
:sectnums:
:toc:

Just call `vagrant up` to get the version.

If you want to get a different version of rdiff-backup than the default one in `host_vars`, use following command:

----
ansible-playbook playbook-provision.yml -e rdiff_backup_old_version=2.0.3
----

To come back to the default version, just leave out the `-e xxx` option (or simply call `vagrant provision`).

You may call the smoke tests using the following command and validate that nothing wrong happens:

----
ansible-playbook -v playbook-smoke-test.yml
----

You can use the current development version by using something like the following, after having built from source using `./setup.py build`:

----
PATH=../../build/scripts-3.8:$PATH PYTHONPATH=../../build/lib.linux-x86_64-3.8 \
	ansible-playbook -v playbook-smoke-test.yml
----

____
*CAUTION:* the version shown locally might be DEV or any other version 	installed elsewhere locally, but the version used is definitely the 	built development version.
____