Package backend :: Package server :: Package action_extra_data :: Module up2date_config
[hide private]
[frames] | no frames]

Source Code for Module backend.server.action_extra_data.up2date_config

 1  # 
 2  # Copyright (c) 2008--2015 Red Hat, Inc. 
 3  # 
 4  # This software is licensed to you under the GNU General Public License, 
 5  # version 2 (GPLv2). There is NO WARRANTY for this software, express or 
 6  # implied, including the implied warranties of MERCHANTABILITY or FITNESS 
 7  # FOR A PARTICULAR PURPOSE. You should have received a copy of GPLv2 
 8  # along with this software; if not, see 
 9  # http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. 
10  # 
11  # Red Hat trademarks are not licensed under GPLv2. No permission is 
12  # granted to use or replicate Red Hat trademarks that are incorporated 
13  # in this software or its documentation. 
14  # 
15  # errata-related error handling functions 
16  # 
17   
18  from spacewalk.common.rhnLog import log_debug 
19   
20  # the "exposed" functions 
21  __rhnexport__ = ['get', 'update', ] 
22   
23   
24 -def get(server_id, action_id, data={}):
25 if not data: 26 return 27 log_debug(2, "action_error.up2date_config.get: Should do something " 28 "useful with this data", server_id, action_id, data)
29 30
31 -def update(server_id, action_id, data={}):
32 if not data: 33 return 34 log_debug(2, "action_error.up2date_config.update: Should do something " 35 "useful with this data", server_id, action_id, data)
36