mirror of
https://github.com/TurboGit/hubicfuse.git
synced 2026-08-04 20:01:59 +02:00
Merge branch 'master' of https://github.com/redbo/cloudfuse
This commit is contained in:
@@ -9,7 +9,7 @@ Cloud Files is a remote storage system which is similar in principle to
|
|||||||
Amazon S3. It provides a simple RESTful interface to storing and retrieving
|
Amazon S3. It provides a simple RESTful interface to storing and retrieving
|
||||||
objects.
|
objects.
|
||||||
|
|
||||||
http://www.rackspacecloud.com/cloud_hosting_products/files
|
http://www.rackspace.com/cloud/files/
|
||||||
|
|
||||||
Swift, the software behind Cloud Files, has been open-sourced as part of the
|
Swift, the software behind Cloud Files, has been open-sourced as part of the
|
||||||
OpenStack project.
|
OpenStack project.
|
||||||
@@ -39,10 +39,20 @@ BUILDING:
|
|||||||
|
|
||||||
USE:
|
USE:
|
||||||
|
|
||||||
|
You'll need to install fuse to use this application. It may have already
|
||||||
|
been installed as a dependency if you followed the "BUILDING" instructions
|
||||||
|
above.
|
||||||
|
|
||||||
|
On Debian:
|
||||||
|
apt-get install fuse
|
||||||
|
|
||||||
|
On CentOS or similar:
|
||||||
|
yum install fuse
|
||||||
|
|
||||||
The following settings can be defined in the file ~/.cloudfuse:
|
The following settings can be defined in the file ~/.cloudfuse:
|
||||||
username=[Account username for authentication, required]
|
username=[Account username for authentication, required]
|
||||||
api_key=[API key for authentication with Rackspace]
|
api_key=[API key for authentication with Rackspace]
|
||||||
tenant=[Tenant for authentication with Openstack]
|
tenant=[Tenant name for authentication with Openstack]
|
||||||
password=[Authentication password with Openstack]
|
password=[Authentication password with Openstack]
|
||||||
authurl=[Authentication url, defaults to Rackspace's cloud]
|
authurl=[Authentication url, defaults to Rackspace's cloud]
|
||||||
region=[Regional endpoint to use]
|
region=[Regional endpoint to use]
|
||||||
@@ -83,7 +93,8 @@ EXAMPLE:
|
|||||||
# used to avoid bandwidth charges.
|
# used to avoid bandwidth charges.
|
||||||
# use_snet=true
|
# use_snet=true
|
||||||
|
|
||||||
A typical ~/.cloudfuse configuration file for use with OpenStack:
|
A typical ~/.cloudfuse configuration file for use with OpenStack,
|
||||||
|
noting that "tenant" should be the tenant name, rather than the ID:
|
||||||
username=demo
|
username=demo
|
||||||
tenant=demo
|
tenant=demo
|
||||||
password=supersecret
|
password=supersecret
|
||||||
|
|||||||
Vendored
+16
@@ -0,0 +1,16 @@
|
|||||||
|
cloudfuse for Debian
|
||||||
|
--------------------
|
||||||
|
|
||||||
|
Please note that the simplest way to allow mounting of Swift shares is to
|
||||||
|
add the user to the fuse group (which will be created by the fuse-utils
|
||||||
|
package).
|
||||||
|
|
||||||
|
To add user 'foo' to the 'fuse' group type the following command (with root
|
||||||
|
privileges):
|
||||||
|
|
||||||
|
adduser foo fuse
|
||||||
|
|
||||||
|
If the user is currently logged in he/she should log out and log in
|
||||||
|
in order for this change to take effect.
|
||||||
|
|
||||||
|
-- Mike Mestnik <cheako+apt_repo@mikemestnik.net> Mon, 04 Jun 2012 13:47:28 -0500
|
||||||
Vendored
+12
@@ -0,0 +1,12 @@
|
|||||||
|
cloudfuse (0.9-1ubuntu1) precise; urgency=low
|
||||||
|
|
||||||
|
* Imported Upstream version 0.9
|
||||||
|
* Remove Debian patches already committed upstream
|
||||||
|
|
||||||
|
-- pataquets <amontero@tinet.org> Wed, 15 Jan 2014 21:07:18 +0100
|
||||||
|
|
||||||
|
cloudfuse (0.1-1) unstable; urgency=low
|
||||||
|
|
||||||
|
* Initial release
|
||||||
|
|
||||||
|
-- Mike Mestnik <cheako+apt_repo@mikemestnik.net> Mon, 04 Jun 2012 13:47:28 -0500
|
||||||
Vendored
+1
@@ -0,0 +1 @@
|
|||||||
|
8
|
||||||
Vendored
+20
@@ -0,0 +1,20 @@
|
|||||||
|
Source: cloudfuse
|
||||||
|
Section: utils
|
||||||
|
Priority: optional
|
||||||
|
Maintainer: Mike Mestnik <cheako+apt_repo@mikemestnik.net>
|
||||||
|
Build-Depends: debhelper (>= 8.0.0), autotools-dev, libcurl4-openssl-dev, libxml2-dev, libssl-dev, libfuse-dev
|
||||||
|
Standards-Version: 3.9.2
|
||||||
|
#Vcs-Git: git://git.debian.org/collab-maint/cloudfuse.git
|
||||||
|
#Vcs-Browser: http://git.debian.org/?p=collab-maint/cloudfuse.git;a=summary
|
||||||
|
|
||||||
|
Package: cloudfuse
|
||||||
|
Architecture: any
|
||||||
|
Depends: ${shlibs:Depends}, ${misc:Depends}, fuse (>= 2.7) [linux-any] | fuse4bsd [kfreebsd-any]
|
||||||
|
Description: filesystem client based on Swift as used by Rackspace.
|
||||||
|
cloudfuse is a FUSE application which provides access to Rackspace's
|
||||||
|
Cloud Files (or any installation of Swift).
|
||||||
|
.
|
||||||
|
cloudfuse is FUSE (Filesystem in USErspace).
|
||||||
|
.
|
||||||
|
cloudfuse may work with Openstack's Swift, but is not provided by Openstack.
|
||||||
|
|
||||||
Vendored
+76
@@ -0,0 +1,76 @@
|
|||||||
|
Format: http://dep.debian.net/deps/dep5
|
||||||
|
Upstream-Name: cloudfuse
|
||||||
|
|
||||||
|
Files: *
|
||||||
|
Copyright: 2009 Michael Barton <mike@weirdlooking.com>
|
||||||
|
License: MIT
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
in the Software without restriction, including without limitation the rights
|
||||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
|
furnished to do so, subject to the following conditions:
|
||||||
|
.
|
||||||
|
The above copyright notice and this permission notice shall be included in
|
||||||
|
all copies or substantial portions of the Software.
|
||||||
|
.
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
THE SOFTWARE.
|
||||||
|
|
||||||
|
Files: debian/*
|
||||||
|
Copyright: 2012 Mike Mestnik <cheako+apt_repo@mikemestnik.net>
|
||||||
|
License: GPL-2+
|
||||||
|
This package is free software; you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation; either version 2 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
.
|
||||||
|
This package is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
.
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program. If not, see <http://www.gnu.org/licenses/>
|
||||||
|
.
|
||||||
|
On Debian systems, the complete text of the GNU General
|
||||||
|
Public License version 2 can be found in "/usr/share/common-licenses/GPL-2".
|
||||||
|
|
||||||
|
Files: configure
|
||||||
|
Copyright: 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
|
||||||
|
2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
|
||||||
|
Free Software Foundation, Inc.
|
||||||
|
License: No problem Bugroff
|
||||||
|
configure script is free software; the Free Software Foundation
|
||||||
|
gives unlimited permission to copy, distribute and modify it.
|
||||||
|
|
||||||
|
Files: install-sh
|
||||||
|
Copyright: 1994 X Consortium
|
||||||
|
License: MIT
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
of this software and associated documentation files (the "Software"), to
|
||||||
|
deal in the Software without restriction, including without limitation the
|
||||||
|
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
||||||
|
sell copies of the Software, and to permit persons to whom the Software is
|
||||||
|
furnished to do so, subject to the following conditions:
|
||||||
|
.
|
||||||
|
The above copyright notice and this permission notice shall be included in
|
||||||
|
all copies or substantial portions of the Software.
|
||||||
|
.
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
|
||||||
|
AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-
|
||||||
|
TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||||
|
.
|
||||||
|
Except as contained in this notice, the name of the X Consortium shall not
|
||||||
|
be used in advertising or otherwise to promote the sale, use or other deal-
|
||||||
|
ings in this Software without prior written authorization from the X Consor-
|
||||||
|
tium.
|
||||||
|
|
||||||
Vendored
+1
@@ -0,0 +1 @@
|
|||||||
|
README
|
||||||
+13
@@ -0,0 +1,13 @@
|
|||||||
|
#!/usr/bin/make -f
|
||||||
|
# -*- makefile -*-
|
||||||
|
# Sample debian/rules that uses debhelper.
|
||||||
|
# This file was originally written by Joey Hess and Craig Small.
|
||||||
|
# As a special exception, when this file is copied by dh-make into a
|
||||||
|
# dh-make output file, you may use that output file without restriction.
|
||||||
|
# This special exception was added by Craig Small in version 0.37 of dh-make.
|
||||||
|
|
||||||
|
# Uncomment this to turn on verbose mode.
|
||||||
|
#export DH_VERBOSE=1
|
||||||
|
|
||||||
|
%:
|
||||||
|
dh $@
|
||||||
Vendored
+1
@@ -0,0 +1 @@
|
|||||||
|
3.0 (quilt)
|
||||||
Vendored
+2
@@ -0,0 +1,2 @@
|
|||||||
|
version=3
|
||||||
|
http://githubredir.debian.net/github/redbo/cloudfuse (.*).tar.gz
|
||||||
Reference in New Issue
Block a user