177 |
anaconda.platform) |
anaconda.platform) |
178 |
|
|
179 |
def productMatches(self, oldprod): |
def productMatches(self, oldprod): |
180 |
|
log.info("oldprod %s productName %s" % (oldprod, productName)); |
181 |
if oldprod is None: |
if oldprod is None: |
182 |
return False |
return False |
183 |
|
|
186 |
|
|
187 |
return False |
return False |
188 |
|
|
189 |
|
def versionMatches(self, oldver): |
190 |
|
log.info("oldver %s productVersion %s" % (oldver, productVersion)); |
191 |
|
return True; |
192 |
|
|
193 |
def getBackend(self): |
def getBackend(self): |
194 |
return yuminstall.YumBackend |
return yuminstall.YumBackend |
195 |
|
|