소스 검색

Avoid cloning installed_by_rpm

Christopher Laprise 6 년 전
부모
커밋
7a9b0c232c
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      qubesadmin/app.py

+ 2 - 1
qubesadmin/app.py

@@ -334,7 +334,8 @@ class QubesBase(qubesadmin.base.PropertyHolder):
             assert isinstance(dst_vm, qubesadmin.vm.QubesVM)
             for prop in src_vm.property_list():
                 # handled by admin.vm.Create call
-                if prop in ('name', 'qid', 'template', 'label', 'uuid'):
+                if prop in ('name', 'qid', 'template', 'label', 'uuid', \
+                            'installed_by_rpm'):
                     continue
                 if src_vm.property_is_default(prop):
                     continue