예제 #1
0
파일: base.py 프로젝트: grnet/synnefo
 def _check_status(self):
     if status.check(self):
         raise BaseException("Component already installed: %s " %
                             self.__class__.__name__)
예제 #2
0
 def _check_status(self):
     if status.check(self):
         raise BaseException("Component already installed: %s " %
                             self.__class__.__name__)
예제 #3
0
파일: base.py 프로젝트: grnet/synnefo
 def _check_conflicts(self):
     for c in self.conflicts:
         if status.check(c(self.ctx)):
             raise BaseException("Conflicting Component: %s " %
                                 c.__name__)
예제 #4
0
 def _check_conflicts(self):
     for c in self.conflicts:
         if status.check(c(self.ctx)):
             raise BaseException("Conflicting Component: %s " % c.__name__)