mirror of
https://github.com/s3fs-fuse/s3fs-fuse.git
synced 2024-11-10 14:50:58 +00:00
15 lines
305 B
Bash
15 lines
305 B
Bash
|
#!/bin/bash -e
|
||
|
|
||
|
S3FS=../src/s3fs
|
||
|
|
||
|
S3FS_CREDENTIALS_FILE=$(eval echo ~${SUDO_USER}/.passwd-s3fs)
|
||
|
|
||
|
TEST_BUCKET_1=${SUDO_USER}-s3fs-integration-test
|
||
|
TEST_BUCKET_MOUNT_POINT_1=/mnt/${TEST_BUCKET_1}
|
||
|
|
||
|
if [ ! -f "$S3FS_CREDENTIALS_FILE" ]
|
||
|
then
|
||
|
echo "Missing credentials file: $S3FS_CREDENTIALS_FILE"
|
||
|
exit 1
|
||
|
fi
|