Skip to content

Commit

Permalink
Fixed mount error for Linux (auto_xattr is OSX).
Browse files Browse the repository at this point in the history
  • Loading branch information
danilop committed Feb 10, 2014
1 parent 899f7dc commit 368e90a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions yas3fs
Original file line number Diff line number Diff line change
Expand Up @@ -2172,8 +2172,7 @@ In an EC2 instance a IAM role can be used to give access to S3/SNS/SQS resources
'atime':False,
'max_read':131072,
'max_write':131072,
'max_readahead':131072,
'auto_xattr':True
'max_readahead':131072
}

if options.uid:
Expand All @@ -2187,6 +2186,7 @@ In an EC2 instance a IAM role can be used to give access to S3/SNS/SQS resources
mount_options['volname'] = os.path.basename(mountpoint)
mount_options['noappledouble'] = True
mount_options['daemon_timeout'] = 3600
mount_options['auto_xattr'] = True
# mount_options['local'] = True # local option is quite unstable
else:
mount_options['big_writes'] = True # Not working on OSX
Expand Down

0 comments on commit 368e90a

Please sign in to comment.