예제 #1
0
파일: yum.py 프로젝트: johan--/pybombs
 def __init__(self):
     PackagerBase.__init__(self)
     self.command = None
     if sysutils.which("dnf") is not None:
         self.command = "dnf"
     elif sysutils.which("yum") is not None:
         self.command = "yum"
예제 #2
0
파일: yum.py 프로젝트: n-west/pybombs2
 def __init__(self):
     PackagerBase.__init__(self)
     self.command = None
     if sysutils.which('dnf') is not None:
         self.command = 'dnf'
     elif sysutils.which('yum') is not None:
         self.command = 'yum'
예제 #3
0
파일: yum.py 프로젝트: djgrasss/pybombs2
 def __init__(self):
     PackagerBase.__init__(self)
     self.command = None
     if sysutils.which('dnf') is not None:
         self.command = 'dnf'
     elif sysutils.which('yum') is not None:
         self.command = 'yum'
예제 #4
0
파일: source.py 프로젝트: ClassOdUa/pybombs
 def __init__(self):
     PackagerBase.__init__(self)
     if self.cfg.get_active_prefix().prefix_dir is None:
         self.log.error("No prefix specified. Aborting.")
         raise PBException("No prefix specified.")
     self.prefix = self.cfg.get_active_prefix()
     self.inventory = self.prefix.inventory
     self.static = False
예제 #5
0
파일: source.py 프로젝트: vosgus/pybombs
 def __init__(self):
     PackagerBase.__init__(self)
     if self.cfg.get_active_prefix().prefix_dir is None:
         self.log.error("No prefix specified. Aborting.")
         exit(1)
     self.prefix = self.cfg.get_active_prefix()
     self.inventory = self.prefix.inventory
     self.static = False
예제 #6
0
파일: aptget.py 프로젝트: djgrasss/pybombs2
 def __init__(self):
     PackagerBase.__init__(self)
예제 #7
0
파일: source.py 프로젝트: ClassOdUa/pybombs
 def __init__(self):
     PackagerBase.__init__(self)
예제 #8
0
 def __init__(self):
     PackagerBase.__init__(self)
     self.packager = None
예제 #9
0
파일: extern.py 프로젝트: ckuethe/pybombs
 def __init__(self):
     PackagerBase.__init__(self)
     self.packager = None