addftool 0.0.8__py3-none-any.whl → 0.1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
addftool/blob.py CHANGED
@@ -101,7 +101,7 @@ def mount_main(args):
101
101
  'logging': {'type': 'silent', 'level': 'log_off'},
102
102
  'components': ['libfuse', 'file_cache', 'attr_cache', 'azstorage'],
103
103
  'libfuse': {'attribute-expiration-sec': 120, 'entry-expiration-sec': 120, 'negative-entry-expiration-sec': 240},
104
- 'file_cache': {'path': '', 'timeout-sec': 120, 'max-size-mb': 40960},
104
+ 'file_cache': {'path': '', 'timeout-sec': 120, 'max-size-mb': 1024 * int(args.file_cache_size)},
105
105
  'attr_cache': {'timeout-sec': 7200},
106
106
  'azstorage': {
107
107
  'type': 'block',
@@ -213,6 +213,7 @@ def main():
213
213
  mount_parser.add_argument("-m", "--mount", help="mount dir", required=True)
214
214
  mount_parser.add_argument("-t", "--template", help="yaml template file", default=None)
215
215
  mount_parser.add_argument("-o", "--allow-other", help="allow other", action="store_true", default=False)
216
+ mount_parser.add_argument("--file-cache-size", help="file cache size (GB)", default=256)
216
217
  mount_parser.add_argument("--sudo", help="sudo", action="store_true")
217
218
 
218
219
  token_parser = subparsers.add_parser('token', help='Token help')
@@ -220,8 +221,8 @@ def main():
220
221
 
221
222
  args = parser.parse_args()
222
223
 
223
- # check current user, set --sudo if current user is not root
224
- if os.getuid() != 0:
224
+ # check os is linux/unix and current user, set --sudo if current user is not root
225
+ if os.name == 'posix' and os.getuid() != 0:
225
226
  args.sudo = True
226
227
 
227
228
  if args.command == 'install':
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.2
1
+ Metadata-Version: 2.4
2
2
  Name: addftool
3
- Version: 0.0.8
3
+ Version: 0.1.0
4
4
  Requires-Dist: cryptography
5
5
  Requires-Dist: requests
6
6
  Requires-Dist: PyYAML
@@ -0,0 +1,9 @@
1
+ addftool/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
+ addftool/blob.py,sha256=P4Fj6ghLsEAw3C1NpEKEe3N4_LS3EedS1OYm5C6yzPw,8006
3
+ addftool/tool.py,sha256=EuKQ2t2InN7yB-_oYLcdsA7vRqzRGTunwIxplUSqEG0,2054
4
+ addftool/util.py,sha256=Q3A68vJDxgfeNiEFmk54HuMuworVndocXpSbVpvGMfc,362
5
+ addftool-0.1.0.dist-info/METADATA,sha256=EbzSeyvThjLaTnuLShjdJ_3skYisyb2NYaWlBv7qMd8,126
6
+ addftool-0.1.0.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
7
+ addftool-0.1.0.dist-info/entry_points.txt,sha256=h5TlQy4AQw-J55HqI7FRkIVRUfw-x3pStFWCoYtoCTM,78
8
+ addftool-0.1.0.dist-info/top_level.txt,sha256=jqj56-plrBbyzY0tIxB6wPzjAA8kte4hUlajyyQygN4,9
9
+ addftool-0.1.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.8.0)
2
+ Generator: setuptools (78.1.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,9 +0,0 @@
1
- addftool/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
- addftool/blob.py,sha256=fieUtPtVC4F-f_Zig_nfOz9Af7ZRX9U3MK638Nid0bc,7842
3
- addftool/tool.py,sha256=EuKQ2t2InN7yB-_oYLcdsA7vRqzRGTunwIxplUSqEG0,2054
4
- addftool/util.py,sha256=Q3A68vJDxgfeNiEFmk54HuMuworVndocXpSbVpvGMfc,362
5
- addftool-0.0.8.dist-info/METADATA,sha256=EMKaddTcanPzYPxuCRv4VI_9CNuUmkr034GsKF-jDZw,126
6
- addftool-0.0.8.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
7
- addftool-0.0.8.dist-info/entry_points.txt,sha256=h5TlQy4AQw-J55HqI7FRkIVRUfw-x3pStFWCoYtoCTM,78
8
- addftool-0.0.8.dist-info/top_level.txt,sha256=jqj56-plrBbyzY0tIxB6wPzjAA8kte4hUlajyyQygN4,9
9
- addftool-0.0.8.dist-info/RECORD,,