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!
浏览代码

Make sure tag/untag is volume-specific

tags/0.92
父节点
当前提交
2aa4286aab
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. +2
    -2
      volume.py

+ 2
- 2
volume.py 查看文件

@@ -30,9 +30,9 @@ def command_volume_list(args):
def command_volume_tag(args):
name, _ = zfs_find(args.reference, focker_type='volume')
zfs_untag(args.tags)
zfs_untag(args.tags, focker_type='volume')
zfs_tag(name, args.tags)
def command_volume_untag(args):
zfs_untag(args.tags)
zfs_untag(args.tags, focker_type='volume')

正在加载...
取消
保存