Merge "fix some rst syntax error of code block"

This commit is contained in:
Jenkins 2016-05-04 10:34:12 +00:00 committed by Gerrit Code Review
commit 73f2fe69ba
2 changed files with 35 additions and 35 deletions

View File

@ -8,9 +8,9 @@ Install from sources::
You have now the freezerc tool installed in /usr/local/bin/freezerc
Please execute the following command to all the available options:
Please execute the following command to all the available options::
$ freezerc --help [...]
$ freezer-agent --help [...]
Please read README.txt or HACKING.txt to see the requirement and more
technical details about how to run freezer

View File

@ -427,7 +427,7 @@ Execute a nova restore::
$ freezer-agent --action restore --nova-inst-id 3ad7a62f-217a-48cd-a861-43ec0a04a78b
Local storage restore execution:
Local storage restore execution::
$ sudo freezer-agent --action restore --container /local_backup_storage/
--backup-name adminui.git
@ -627,41 +627,41 @@ related to the storage
Example: ssh-username, ssh-port
For swift storage you should provide additional parameter called 'osrc'
Osrc should be a path to file with Openstack Credentials like:
Osrc should be a path to file with Openstack Credentials like::
unset OS_DOMAIN_NAME
export OS_AUTH_URL=http://url:5000/v3
export OS_PROJECT_NAME=project_name
export OS_USERNAME=username
export OS_PASSWORD=secret_password
export OS_PROJECT_DOMAIN_NAME=Default
export OS_USER_DOMAIN_NAME=Default
export OS_IDENTITY_API_VERSION=3
export OS_AUTH_VERSION=3
export OS_CACERT=/etc/ssl/certs/ca-certificates.crt
export OS_ENDPOINT_TYPE=internalURL
unset OS_DOMAIN_NAME
export OS_AUTH_URL=http://url:5000/v3
export OS_PROJECT_NAME=project_name
export OS_USERNAME=username
export OS_PASSWORD=secret_password
export OS_PROJECT_DOMAIN_NAME=Default
export OS_USER_DOMAIN_NAME=Default
export OS_IDENTITY_API_VERSION=3
export OS_AUTH_VERSION=3
export OS_CACERT=/etc/ssl/certs/ca-certificates.crt
export OS_ENDPOINT_TYPE=internalURL
Example of Config file for two local storages and one swift storage:
Example of Config file for two local storages and one swift storage::
[default]
action = backup
mode = fs
path_to_backup = /foo/
backup_name = mytest6
always_level = 2
max_segment_size = 67108864
container = /tmp/backup/
storage = local
[storage:first]
storage=local
container = /tmp/backup1/
[storage:second]
storage=local
container = /tmp/backup2/
[storage:swift]
storage=swift
container = test
osrc = openrc.osrc
[default]
action = backup
mode = fs
path_to_backup = /foo/
backup_name = mytest6
always_level = 2
max_segment_size = 67108864
container = /tmp/backup/
storage = local
[storage:first]
storage=local
container = /tmp/backup1/
[storage:second]
storage=local
container = /tmp/backup2/
[storage:swift]
storage=swift
container = test
osrc = openrc.osrc
freezer-scheduler
-----------------