Lines Matching full:s3
2 BitBake 'Fetch' implementation for Amazon AWS S3.
4 Class for fetching files from Amazon S3 using the AWS Command Line Interface.
38 Extract progress information from s3 cp output, e.g.:
62 class S3(FetchMethod): class
63 """Class to fetch urls via 'aws s3'"""
67 Check to see if a given url can be fetched with s3.
69 return ud.type in ['s3']
82 ud.basecmd = d.getVar("FETCHCMD_s3") or "/usr/bin/env aws s3"
90 cmd = '%s cp s3://%s%s %s' % (ud.basecmd, ud.host, ud.path, ud.localpath)
101 …raise FetchError("The aws cp command returned success for s3://%s%s but %s doesn't exist?!" % (ud.…
105 …raise FetchError("The aws cp command for s3://%s%s resulted in a zero size file?! Deleting and fai…
114 cmd = '%s ls s3://%s%s' % (ud.basecmd, ud.host, ud.path)
118 # "aws s3 ls s3://mybucket/foo" will exit with success even if the file
122 … raise FetchError("The aws ls command for s3://%s%s gave empty output" % (ud.host, ud.path))