Package up2date_client :: Module pkgUtils
[hide private]
[frames] | no frames]

Source Code for Module up2date_client.pkgUtils

 1  # Client code for Update Agent 
 2  # Copyright (c) 2011--2016 Red Hat, Inc.  Distributed under GPLv2. 
 3  # 
 4  # Author: Simon Lukasik 
 5   
 6  from up2date_client.pkgplatform import getPlatform 
 7   
 8  if getPlatform() == 'deb': 
 9      from up2date_client.debUtils import * 
10  else: 
11      from up2date_client.rpmUtils import * 
12