/usr/lib/python3/dist-packages/backup2swift-0.8.egg-info/PKG-INFO is in python3-backup2swift 0.8-1build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 | Metadata-Version: 1.1
Name: backup2swift
Version: 0.8
Summary: Backup data to OpenStack Swift
Home-page: https://github.com/mkouhei/backup2swift
Author: Kouhei Maeda
Author-email: mkouhei@palmtb.net
License: GNU General Public License version 3
Description: ==============================================
backup2swift is backup data to OpenStack Swift
==============================================
This tool is that backup data to OpenStack Swift. provides features are command line interface, and backup rotatition.
This tool is depend on swiftsc, that is simple client library of OpenStack Swift.
Requirements
------------
* Python 2.6 later or Python 3.2 later
* swiftsc 0.5 later
Setup
-----
::
$ git clone https://github.com/mkouhei/backup2swift
$ cd backup2swift
$ sudo python setup.py install
or via PyPI::
$ virtualenv --no-site-packages venv
$ pip install backup2swift
Usage
-----
Firstly setup configuration file. You may save the file name of your choice as setting. Example is as folloing::
[swift]
auth_url: https://example.org/auth/v1.0
username: username
password: password
[backup]
rotate_limit: 10
The "auth_url" is swift authentication url, "username" and "password" are swift's. If you need to ignore verification of SSL certification, append option as "ignore_verify_ssl_certification: True" to [swift] section. "rotate_limit" is limitation count of rotation for backup. If this value is 3, backup is as folloing;
backup target file name: example.txt
Firstly backup object is created as same name of backup target file (that is "example.txt")::
$ bu2sw -c bu2sw.conf -p example.txt
$ bu2sw -c bu2sw.conf -l
example.txt
Secondly backup object is created as same name of backup target file, and first backup object is renamed added timestamp as "example.txt_YYYYMMDD-hhmmss".::
$ bu2sw -c bu2sw.conf -p example.txt
$ bu2sw -c bu2sw.conf -l
example.txt
example.txt_20130510-113930
Backup objects named with timestamp are created until "rotate_limit" value. Old backup object is remove when execute backup over limitation.::
$ bu2sw -c bu2sw.conf -p example.txt
$ bu2sw -c bu2sw.conf -l
example.txt
example.txt_20130510-113930
example.txt_20130510-113941
example.txt_20130510-113953
$ bu2sw -c bu2sw.conf -p example.txt
$ bu2sw -c bu2sw.conf -l
example.txt
example.txt_20130510-113941
example.txt_20130510-113953
example.txt_20130510-114110
See also man manual of bu2sw(1).
Contribute
----------
Firstly copy pre-commit hook script.::
$ cp -f utils/pre-commit.txt .git/hooks/pre-commit
Next install python2.6 later, and python-swiftsc, py.test. Below in Debian GNU/Linux Sid system,::
$ sudo apt-get install python python-swiftsc python-pytest pep8
Then checkout 'devel' branch for development, commit your changes. Before pull request, execute git rebase.
See also
--------
* `OpenStack Object Storage Developer Guide <http://docs.openstack.org/api/openstack-object-storage/1.0/content/index.html>`_
* `swiftsc <https://github.com/mkouhei/swiftsc>`_
ToDo
----
* create documents
History
-------
0.8 (2013-07-27)
^^^^^^^^^^^^^^^^
* read the file from stdin pipe
* Omitted option of --container
0.7 (2013-06-14)
^^^^^^^^^^^^^^^^
* support Python 3.2, 3.3
0.6 (2013-06-03)
^^^^^^^^^^^^^^^^
* support authentication of keystone
0.5 (2013-05-30)
^^^^^^^^^^^^^^^^
* New features
* upload / retrieve / delete in parallel
* support to delete multiple objects
* Bug fix
* fixes fail to raise IOError if default config file exists
* fail to use "rotate_limit" option on configuration file
* support pep8 less than version 1.3
0.4 (2013-05-29)
^^^^^^^^^^^^^^^^
* New features
* support default config file
* specify any container
* support to retrieve multiple objects
* specify multiple upload files
* Bug fix
* fixes spelling error
* remove pychecker for travis
0.3.2 (2013-05-24)
^^^^^^^^^^^^^^^^^^
* fixes fail backup and rotate with verifing default SSL certificate
0.3.1 (2013-05-20)
^^^^^^^^^^^^^^^^^^
* add option to ignore verifing of SSL certificate
0.3 (2013-05-17)
^^^^^^^^^^^^^^^^
* add retrieve backup object command
0.2 (2013-05-10)
^^^^^^^^^^^^^^^^
* add backup object command
* fixes man manual
0.1.3 (2013-05-10)
^^^^^^^^^^^^^^^^^^
* applied changing api of swiftsc.client.is_container()
* add how to setup and usage
0.1.2 (2013-05-09)
^^^^^^^^^^^^^^^^^^
* fixes #3 failed to execute in python2.6
0.1.1 (2013-05-08)
^^^^^^^^^^^^^^^^^^
* fixes #1 fail to execute firstly when there is no container
0.1 (2013-05-08)
^^^^^^^^^^^^^^^^
* first release
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Programming Language :: Python
Classifier: Topic :: Internet
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Environment :: OpenStack
|