IF YOU WOULD LIKE TO GET AN ACCOUNT, please write an email to s dot adaszewski at gmail dot com. User accounts are meant only to report issues and/or generate pull requests. This is a purpose-specific Git hosting for ADARED projects. Thank you for your understanding!
소스 검색

Fix for the missing tag case

tags/0.92
부모
커밋
16687d157e
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. +1
    -0
      zfs.py

+ 1
- 0
zfs.py 파일 보기

@@ -78,6 +78,7 @@ def zfs_tag(name, tags, replace=False):
tags = list(tags)
tags.extend(lst[0][0].split(' '))
tags = list(set(tags))
tags = list(filter(lambda a: a != '-', tags))
if len(tags) > 0:
zfs_run(['zfs', 'set', 'focker:tags=' + ' '.join(tags), name])
else:


불러오는 중...
취소
저장