mirror of
https://github.com/s3fs-fuse/s3fs-fuse.git
synced 2025-02-08 05:28:26 +00:00
Add support for mulitple access id/secret access keys in passwd-s3fs file This change applies to any passwd-s3fs files. The format of the file is more robust, error checked and extended: - as before, any line beginning with # is ignored - any empty line is ignored - any non-ignored line which contains a space or tab is an error - any non-ignored line which does not contain a : separator is an error The format of the file is: [bucket:]AccessKeyId:SecretAccessKey The bucket can now be specified to allow for multiple credentials. A default entry is as before: AccessKeyId:SecretAccessKey Only one default entry is allowed, if more than one default entry is found, that is an error. A default entry is not required, if the bucket that is being mounted has its own entry. If the user's .passwd-s3fs file is present but credentials cannot be determined from it, then the system-wide /etc/passwd-s3fs will be consulted (if readable by the current user). This change is completely backward compatable with the existing scheme and has been well tested. git-svn-id: http://s3fs.googlecode.com/svn/trunk@229 df820570-a93a-0410-bd06-b72b767a4274
17 lines
301 B
Plaintext
17 lines
301 B
Plaintext
dnl Process this file with autoconf to produce a configure script.
|
|
|
|
AC_PREREQ(2.59)
|
|
AC_INIT(s3fs, 1.11)
|
|
|
|
|
|
AC_CANONICAL_SYSTEM
|
|
AM_INIT_AUTOMAKE()
|
|
|
|
AC_PROG_CXX
|
|
|
|
PKG_CHECK_MODULES([DEPS], [fuse >= 2.7 libcurl >= 7.0 libxml-2.0 >= 2.6 libcrypto >= 0.9])
|
|
|
|
AC_CONFIG_FILES(Makefile src/Makefile)
|
|
AC_OUTPUT
|
|
|